Delegate definition for the text results callback.

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,
	IntPtr info
)
Visual Basic
Public Delegate Sub TextResultsDelegate ( _
	cmdID As UInteger, _
	info As IntPtr _
)
Visual C++
public delegate void TextResultsDelegate(
	unsigned int cmdID, 
	IntPtr info
)

Parameters

cmdID
Type: System..::..UInt32
Id if the command making the callback
info
Type: System..::..IntPtr
Text output produced by the command

Remarks

If this callback is used, the text output generated by a command will be delivered by one or more call to the supplied delegate. It multiple calls are made, the entire text is obtained by concatenating the text from each call.

See Also