Delegate definition for the prompt 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 PromptDelegate(
	uint cmdID,
	IntPtr msg,
	IntPtr rspBuf,
	int bufSz,
	bool dispayText
)
Visual Basic
Public Delegate Sub PromptDelegate ( _
	cmdID As UInteger, _
	msg As IntPtr, _
	rspBuf As IntPtr, _
	bufSz As Integer, _
	dispayText As Boolean _
)
Visual C++
public delegate void PromptDelegate(
	unsigned int cmdID, 
	IntPtr msg, 
	IntPtr rspBuf, 
	int bufSz, 
	bool dispayText
)

Parameters

cmdID
Type: System..::..UInt32
Id if the command making the callback
msg
Type: System..::..IntPtr
Prompt message from the server
rspBuf
Type: System..::..IntPtr
Character buffer to receive the response
bufSz
Type: System..::..Int32
Size of the buffer
dispayText
Type: System..::..Boolean
Display flog

See Also