HttpWebResponse::StatusCode Property
.NET Framework (current version)
Gets the status of the response.
Assembly: System (in System.dll)
| Exception | Condition |
|---|---|
| ObjectDisposedException | The current instance has been disposed. |
The StatusCode parameter is a number that indicates the status of the HTTP response. The expected values for status are defined in the HttpStatusCode class.
The following example uses StatusCode to verify that the status of the HttpWebResponse is OK.
void GetPage( String^ url ) { try { // Creates an HttpWebRequest for the specified URL. HttpWebRequest^ myHttpWebRequest = dynamic_cast<HttpWebRequest^>(WebRequest::Create( url )); // Sends the HttpWebRequest and waits for a response. HttpWebResponse^ myHttpWebResponse = dynamic_cast<HttpWebResponse^>(myHttpWebRequest->GetResponse()); if ( myHttpWebResponse->StatusCode == HttpStatusCode::OK ) { Console::WriteLine( "\r\nResponse Status Code is OK and StatusDescription is: {0}", myHttpWebResponse->StatusDescription ); } // Releases the resources of the response. myHttpWebResponse->Close(); } catch ( WebException^ e ) { Console::WriteLine( "\r\nWebException Raised. The following error occured : {0}", e->Status ); } catch ( Exception^ e ) { Console::WriteLine( "\nThe following Exception was raised : {0}", e->Message ); } }
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: