Delegate used to send tagged output as it is generated.

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

Syntax

C#
public delegate void TaggedOutputDelegate(
	uint cmdId,
	int ObjId,
	TaggedObject Obj
)
Visual Basic
Public Delegate Sub TaggedOutputDelegate ( _
	cmdId As UInteger, _
	ObjId As Integer, _
	Obj As TaggedObject _
)
Visual C++
public delegate void TaggedOutputDelegate(
	unsigned int cmdId, 
	int ObjId, 
	TaggedObject^ Obj
)

Parameters

cmdId
Type: System..::..UInt32
Unique Id for the run of the command
ObjId
Type: System..::..Int32
Obj
Type: Perforce.P4..::..TaggedObject

Remarks

This delegate will send a complete object after all of its fields have been received by the callback from the bridge dll.

See Also