HttpWebResponse.Server Property
.NET Framework 3.5
Gets the name of the server that sent the response.
Assembly: System (in System.dll)
Property Value
Type: System.StringA string that contains the name of the server that sent the response.
| Exception | Condition |
|---|---|
| ObjectDisposedException | The current instance has been disposed. |
The following example uses the Server property to display the Web server's name to the console.
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);
}
}
try {
// Creates an HttpWebRequest for the specified URL.
HttpWebRequest* myHttpWebRequest =
dynamic_cast<HttpWebRequest*>(WebRequest::Create(url));
HttpWebResponse* myHttpWebResponse =
dynamic_cast<HttpWebResponse*>(myHttpWebRequest->GetResponse());
String* method ;
method = myHttpWebResponse->Method;
if (String::Compare(method, S"GET") == 0)
Console::WriteLine(S"\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(S"\nWebException raised. The following error occured : {0}",
__box(e->Status));
} catch (Exception* e) {
Console::WriteLine(S"\nThe following Exception was raised : {0}",
e->Message);
}
}
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.