Click or drag to resize

P4ServerErrorDelegate Delegate

Delegate used to send errors as they are generated.

Namespace:  Perforce.P4
Assembly:  p4api.net (in p4api.net.dll) Version: 2023.2.258.5793
Syntax
public delegate void ErrorDelegate(
	uint cmdId,
	int severity,
	int errorNumber,
	string data
)

Parameters

cmdId
Type: SystemUInt32
Command Id of the command causing the error
severity
Type: SystemInt32
Severity of the error
errorNumber
Type: SystemInt32
Error number for the error
data
Type: SystemString
Error message
Remarks
This delegate will send a block of data for each call received by the callback from the bridge dll.
See Also