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

Delegate definition for the text results callback.

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

Syntax

C#
public delegate void TextResultsDelegate(
	IntPtr info
)
Visual Basic
Public Delegate Sub TextResultsDelegate ( _
	info As IntPtr _
)
Visual C++
public delegate void TextResultsDelegate(
	IntPtr info
)

Parameters

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