Share via


WebException Constructor (String, Exception)

[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 nested exception.

Namespace:  System.Net
Assembly:  System.Http (in System.Http.dll)

Syntax

'Declaration
Public Sub New ( _
    message As String, _
    innerException As Exception _
)
public WebException(
    string message,
    Exception innerException
)
public:
WebException(
    String^ message, 
    Exception^ innerException
)
new : 
        message:string * 
        innerException:Exception -> WebException
public function WebException(
    message : String, 
    innerException : Exception
)

Parameters

Remarks

The WebException instance is initialized with the Message property set to the value of message and the InnerException property set to the value of innerException. 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) . The Status property is initialized to RequestCanceled.

.NET Framework Security

See Also

Reference

WebException Class

WebException Overload

System.Net Namespace