HttpWebResponse.StatusDescription Свойство
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Получает описание состояния, возвращаемого с ответом.
public:
virtual property System::String ^ StatusDescription { System::String ^ get(); };
public:
property System::String ^ StatusDescription { System::String ^ get(); };
public virtual string StatusDescription { get; }
public string StatusDescription { get; }
member this.StatusDescription : string
Public Overridable ReadOnly Property StatusDescription As String
Public ReadOnly Property StatusDescription As String
Значение свойства
Строка, описывающая состояние ответа.
Исключения
Текущий экземпляр удален.
Примеры
В следующем примере используется StatusDescription для проверки состояния HttpWebResponse ОК.
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 occurred : {0}", e->Status );
}
catch ( Exception^ e )
{
Console::WriteLine( "\nThe following Exception was raised : {0}", e->Message );
}
}
public static void GetPage(String url)
{
try
{
// Creates an HttpWebRequest for the specified URL.
HttpWebRequest myHttpWebRequest = (HttpWebRequest)WebRequest.Create(url);
// Sends the HttpWebRequest and waits for a response.
HttpWebResponse myHttpWebResponse = (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 occurred : {0}",e.Status);
}
catch(Exception e)
{
Console.WriteLine("\nThe following Exception was raised : {0}",e.Message);
}
}
Public Shared Sub GetPage(url As [String])
Try
' Creates an HttpWebRequest with the specified URL.
Dim myHttpWebRequest As HttpWebRequest = CType(WebRequest.Create(url), HttpWebRequest)
' Sends the request and waits for a response.
Dim myHttpWebResponse As HttpWebResponse = CType(myHttpWebRequest.GetResponse(), HttpWebResponse)
If myHttpWebResponse.StatusCode = HttpStatusCode.OK Then
Console.WriteLine(ControlChars.Lf + ControlChars.NewLine + "Response Status Code is OK and StatusDescription is: {0}", myHttpWebResponse.StatusDescription)
End If
' Release the resources of the response.
myHttpWebResponse.Close()
Catch e As WebException
Console.WriteLine(ControlChars.Lf + 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
End Sub
Комментарии
Общее сообщение о состоянии — ОК.
Применяется к
Совместная работа с нами на GitHub
Источник этого содержимого можно найти на GitHub, где также можно создавать и просматривать проблемы и запросы на вытягивание. Дополнительные сведения см. в нашем руководстве для участников.