Delegate definition for the info results callback.

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

Syntax

C#
public delegate void InfoResultsDelegate(
	uint cmdID,
	int msgID,
	int level,
	IntPtr info
)
Visual Basic
Public Delegate Sub InfoResultsDelegate ( _
	cmdID As UInteger, _
	msgID As Integer, _
	level As Integer, _
	info As IntPtr _
)
Visual C++
public delegate void InfoResultsDelegate(
	unsigned int cmdID, 
	int msgID, 
	int level, 
	IntPtr info
)

Parameters

cmdID
Type: System..::..UInt32
Id of the command making the callback
msgID
Type: System..::..Int32
Unique Id of the message from the server
level
Type: System..::..Int32
info
Type: System..::..IntPtr

Remarks

The "info" results generally are the output of commands that are run not using tagged protocol

See Also