Delegate used to send Text Results as they are generated.

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

Syntax

C#
public delegate void TextResultsDelegate(
	uint cmdId,
	string data
)
Visual Basic
Public Delegate Sub TextResultsDelegate ( _
	cmdId As UInteger, _
	data As String _
)
Visual C++
public delegate void TextResultsDelegate(
	unsigned int cmdId, 
	String^ data
)

Parameters

cmdId
Type: System..::..UInt32
Unique Id for the run of the command
data
Type: System..::..String
Text results generated by the command

Remarks

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

See Also