P4CallBacksTextResultsDelegate Delegate
|
Delegate definition for the text results callback.
Namespace:
Perforce.P4
Assembly:
p4api.net (in p4api.net.dll) Version: 2024.2.269.3570
Syntax public delegate void TextResultsDelegate(
uint cmdID,
IntPtr info
)
Public Delegate Sub TextResultsDelegate (
cmdID As UInteger,
info As IntPtr
)
public delegate void TextResultsDelegate(
unsigned int cmdID,
IntPtr info
)
type TextResultsDelegate =
delegate of
cmdID : uint32 *
info : IntPtr -> unit
Parameters
- cmdID
- Type: SystemUInt32
Id if the command making the callback - info
- Type: SystemIntPtr
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