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

Delegate used to send tagged output as it is generated.

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

Syntax

C#
public delegate void TaggedOutputDelegate(
	int ObjId,
	TaggedObject Obj
)
Visual Basic
Public Delegate Sub TaggedOutputDelegate ( _
	ObjId As Integer, _
	Obj As TaggedObject _
)
Visual C++
public delegate void TaggedOutputDelegate(
	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