Click or drag to resize

P4ServerBinaryResultsDelegate Delegate

Delegate used to send binary output as it is generated.

Namespace:  Perforce.P4
Assembly:  p4api.net (in p4api.net.dll) Version: 2023.2.255.3501
Syntax
public delegate void BinaryResultsDelegate(
	uint cmdId,
	byte[] data
)

Parameters

cmdId
Type: SystemUInt32
Unique Id for the run of the command
data
Type: SystemByte
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