HttpWebResponse.Method Свойство
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Возвращает метод, используемый для возврата ответа.
public:
virtual property System::String ^ Method { System::String ^ get(); };
public:
property System::String ^ Method { System::String ^ get(); };
public virtual string Method { get; }
public string Method { get; }
member this.Method : string
Public Overridable ReadOnly Property Method As String
Public ReadOnly Property Method As String
Значение свойства
Строка, содержащая метод HTTP, используемый для возврата ответа.
Исключения
Текущий экземпляр удален.
Примеры
В следующем примере проверяется строка, содержащаяся в Method, для определения метода HTTP, вызываемого веб-сервером.
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 occurred : {0}", e->Status );
}
catch ( Exception^ e )
{
Console::WriteLine( "\nThe following Exception was raised : {0}", e->Message );
}
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 occurred : {0}",e.Status);
}
catch(Exception e)
{
Console.WriteLine("\nThe following Exception was raised : {0}",e.Message);
}
}
Try
Dim myHttpWebRequest As HttpWebRequest = CType(WebRequest.Create(url), HttpWebRequest)
Dim myHttpWebResponse As HttpWebResponse = CType(myHttpWebRequest.GetResponse(), HttpWebResponse)
Dim method As String
method = myHttpWebResponse.Method
If [String].Compare(method, "GET") = 0 Then
Console.WriteLine(ControlChars.NewLine + "The GET method was successfully invoked on the following Web Server : {0}", myHttpWebResponse.Server)
End If
' Releases the resources of the response.
myHttpWebResponse.Close()
Catch e As WebException
Console.WriteLine(ControlChars.NewLine + "Exception Raised. The following error occurred : {0}", e.Status)
Catch e As Exception
Console.WriteLine(ControlChars.NewLine + "The following exception was raised : {0}", e.Message)
End Try
Комментарии
Method возвращает метод , используемый для возврата ответа. Распространенные методы HTTP: GET, HEAD, POST, PUT и DELETE.