Delegate used to send binary 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 BinaryResultsDelegate(
	uint cmdId,
	byte[] data
)
Visual Basic
Public Delegate Sub BinaryResultsDelegate ( _
	cmdId As UInteger, _
	data As Byte() _
)
Visual C++
public delegate void BinaryResultsDelegate(
	unsigned int cmdId, 
	array<unsigned char>^ data
)

Parameters

cmdId
Type: System..::..UInt32
data
Type: array<System..::..Byte>[]()[][]
Binary data generated by a command

Remarks

This delegate will send a block of data for each call received by the callback from the bridge dll.

See Also