WebException Constructor (String, WebExceptionStatus)
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Initializes a new instance of the WebException class with the specified error message and status.
Namespace: System.Net
Assembly: System.Http (in System.Http.dll)
Syntax
'Declaration
Public Sub New ( _
message As String, _
status As WebExceptionStatus _
)
public WebException(
string message,
WebExceptionStatus status
)
public:
WebException(
String^ message,
WebExceptionStatus status
)
new :
message:string *
status:WebExceptionStatus -> WebException
public function WebException(
message : String,
status : WebExceptionStatus
)
Parameters
- message
Type: System. . :: . .String
The text of the error message.
- status
Type: System.Net. . :: . .WebExceptionStatus
One of the WebExceptionStatus values.
Remarks
The WebException instance is initialized with the Message property set to the value of message and the Status property set to the value of status. If message is null Nothing nullptr unit a null reference (Nothing in Visual Basic) , the Message property is initialized to a system-supplied message. The InnerException and Response properties are initialized to null Nothing nullptr unit a null reference (Nothing in Visual Basic) .
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.