Delegate used to send Text Results as they are generated.

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

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
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