[This is preliminary documentation and is subject to change.]

Delegate used to send Info Results as they are generated.

Namespace: Perforce.P4
Assembly: p4api.net (in p4api.net.dll) Version: 2012.2.63.1250 (2012.2.63.1250)

Syntax

C#
public delegate void InfoResultsDelegate(
	int level,
	string data
)
Visual Basic
Public Delegate Sub InfoResultsDelegate ( _
	level As Integer, _
	data As String _
)
Visual C++
public delegate void InfoResultsDelegate(
	int level, 
	String^ data
)

Parameters

level
Type: System..::..Int32
Server supplied message level
data
Type: System..::..String
Server supplied message data

Remarks

This delegate will send a block of data for each call received by the callback from the bridge dll.

See Also