Delegate definition for the info results callback.

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

Syntax

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

Parameters

cmdID
Type: System..::..UInt32
Id if the command making the callback
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