P4CallBacksTaggedOutputDelegate Delegate
|
Delegate definition for the tagged output delegate.
Namespace:
Perforce.P4
Assembly:
p4api.net (in p4api.net.dll) Version: 2024.2.269.3570
Syntax public delegate void TaggedOutputDelegate(
uint cmdID,
int objID,
string key,
IntPtr value
)
Public Delegate Sub TaggedOutputDelegate (
cmdID As UInteger,
objID As Integer,
key As String,
value As IntPtr
)
public delegate void TaggedOutputDelegate(
unsigned int cmdID,
int objID,
String^ key,
IntPtr value
)
type TaggedOutputDelegate =
delegate of
cmdID : uint32 *
objID : int *
key : string *
value : IntPtr -> unit
Parameters
- cmdID
- Type: SystemUInt32
Id if the command making the callback - objID
- Type: SystemInt32
Object ID for the object - key
- Type: SystemString
The Key of this Key:Value pair - value
- Type: SystemIntPtr
The Key of this Key:Value pair
Remarks
Each call of this delegate by the bridge provides a single Key:Value
pair for the current object. When all the Key:Value pairs for an
object have been sent, the bridge will make one final call with null
for the values of the key and value to signify it is complete. Each
object generated by a command will have an object ID that unique for
that command.
See Also