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

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

Parameters

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