HttpWebResponse::Method Property
.NET Framework 4.5
Gets the method that is used to return the response.
Namespace: System.Net
Assembly: System (in System.dll)
Property Value
Type: System::StringA string that contains the HTTP method that is used to return the response.
| Exception | Condition |
|---|---|
| ObjectDisposedException | The current instance has been disposed. |
The following example checks the string contained in Method, to determine the Http method invoked by the Web server.
try { // Creates an HttpWebRequest for the specified URL. HttpWebRequest^ myHttpWebRequest = (HttpWebRequest^)( WebRequest::Create( url ) ); HttpWebResponse^ myHttpWebResponse = (HttpWebResponse^)( myHttpWebRequest->GetResponse() ); String^ method; method = myHttpWebResponse->Method; if ( String::Compare( method, "GET" ) == 0 ) { Console::WriteLine( "\nThe 'GET' method was successfully invoked on the following Web Server : {0}", myHttpWebResponse->Server ); } // Releases the resources of the response. myHttpWebResponse->Close(); } catch ( WebException^ e ) { Console::WriteLine( "\nWebException raised. The following error occured : {0}", e->Status ); } catch ( Exception^ e ) { Console::WriteLine( "\nThe following Exception was raised : {0}", e->Message ); }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.