WebException Constructor (String^, WebExceptionStatus)
.NET Framework (current version)
Initializes a new instance of the WebException class with the specified error message and status.
Assembly: System (in System.dll)
Parameters
- message
-
Type:
System::String^
The text of the error message.
- status
-
Type:
System.Net::WebExceptionStatus
One of the WebExceptionStatus values.
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, the Message property is initialized to a system-supplied message. The InnerException and Response properties are initialized to null.
The following example throws a WebException by specifying an error message and a WebExceptionStatus.
try { // A 'Socket' object has been created. Socket^ httpSocket = gcnew Socket( AddressFamily::InterNetwork, SocketType::Stream, ProtocolType::Tcp ); // The IPaddress of the unknown uri is resolved using the 'Dns::Resolve' method. IPHostEntry^ hostEntry = Dns::Resolve( "http://www.contoso.com" ); IPAddress^ serverAddress = hostEntry->AddressList[ 0 ]; IPEndPoint^ endPoint = gcnew IPEndPoint( serverAddress, 80 ); httpSocket->Connect( endPoint ); Console::WriteLine( "Connection created successfully" ); httpSocket->Close(); } catch ( SocketException^ e ) { Console::WriteLine( "\nException thrown.\nThe Original Message is: {0}", e->Message ); // Throw the 'WebException' object with a message string and message status specific to the situation. throw gcnew WebException( "Unable to locate the Server with 'www.contoso.com' Uri.", WebExceptionStatus::NameResolutionFailure ); }
Universal Windows Platform
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Show: