HttpWebResponse.GetResponseHeader Method
.NET Framework 4
Gets the contents of a header that was returned with the response.
Assembly: System (in System.dll)
Parameters
- headerName
- Type: System.String
The header value to return.
| Exception | Condition |
|---|---|
| ObjectDisposedException | The current instance has been disposed. |
This example creates a Web request and queries for a response. If the site requires authentication, this example will respond with a challenge string. This string is extracted using GetResponseHeader.
public static void GetPage(String url) { try { Uri ourUri = new Uri(url); // Creates an HttpWebRequest for the specified URL. HttpWebRequest myHttpWebRequest = (HttpWebRequest)WebRequest.Create(ourUri); HttpWebResponse myHttpWebResponse = (HttpWebResponse)myHttpWebRequest.GetResponse(); Console.WriteLine("\nThe server did not issue any challenge. Please try again with a protected resource URL."); // Releases the resources of the response. myHttpWebResponse.Close(); } catch(WebException e) { HttpWebResponse response = (HttpWebResponse)e.Response; if (response != null) { if (response.StatusCode == HttpStatusCode.Unauthorized) { string challenge = null; challenge= response.GetResponseHeader("WWW-Authenticate"); if (challenge != null) Console.WriteLine("\nThe following challenge was raised by the server:{0}",challenge); } else Console.WriteLine("\nThe following WebException was raised : {0}",e.Message); } else Console.WriteLine("\nResponse Received from server was null"); } catch(Exception e) { Console.WriteLine("\nThe following Exception was raised : {0}",e.Message); } } }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.