InvalidHandleException Constructor (RasHandle, String, Exception)

DotRas SDK

Collapse image Expand Image Copy image CopyHover image
Initializes a new instance of the InvalidHandleException class.

Namespace: DotRas
Assembly: DotRas (in DotRas.dll) Version: 1.3.5166.33435 (1.3.0.0)

Syntax

C#
public InvalidHandleException(
	RasHandle handle,
	string message,
	Exception innerException
)
Visual Basic
Public Sub New ( 
	handle As RasHandle,
	message As String,
	innerException As Exception
)
Visual C++
public:
InvalidHandleException(
	RasHandle^ handle, 
	String^ message, 
	Exception^ innerException
)
F#
new : 
        handle : RasHandle * 
        message : string * 
        innerException : Exception -> InvalidHandleException

Parameters

handle
Type: DotRas..::..RasHandle
The RasHandle that caused the exception.
message
Type: System..::..String
A message that describes the error.
innerException
Type: System..::..Exception
The exception that is the cause of the current exception, or null reference (Nothing in Visual Basic) if no inner exception is specified.

See Also