[This is preliminary documentation and is subject to change.]

Delegate definition for the prompt callback.

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

Syntax

C#
public delegate void PromptDelegate(
	IntPtr msg,
	IntPtr rspBuf,
	int bufSz,
	bool dispayText
)
Visual Basic
Public Delegate Sub PromptDelegate ( _
	msg As IntPtr, _
	rspBuf As IntPtr, _
	bufSz As Integer, _
	dispayText As Boolean _
)
Visual C++
public delegate void PromptDelegate(
	IntPtr msg, 
	IntPtr rspBuf, 
	int bufSz, 
	bool dispayText
)

Parameters

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