Delegate used to send tagged output as it is generated.

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

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
)

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