WebClient.ResponseHeaders Property
.NET Framework 4
Gets a collection of header name/value pairs associated with the response.
Assembly: System (in System.dll)
Property Value
Type: System.Net.WebHeaderCollectionA WebHeaderCollection containing header name/value pairs associated with the response, or null if no response has been received.
The ResponseHeaders property contains a WebHeaderCollection instance containing header information the WebClient receives with the response.
The following code example downloads and displays the ResponseHeaders returned by a server.
// Obtain the WebHeaderCollection instance containing the header name/value pair from the response. WebHeaderCollection myWebHeaderCollection = myWebClient.ResponseHeaders; Console.WriteLine("\nDisplaying the response headers\n"); // Loop through the ResponseHeaders and display the header name/value pairs. for (int i=0; i < myWebHeaderCollection.Count; i++) Console.WriteLine ("\t" + myWebHeaderCollection.GetKey(i) + " = " + myWebHeaderCollection.Get(i));
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.