WebClient.ResponseHeaders Property
.NET Framework 4.5
Gets a collection of header name/value pairs associated with the response.
Namespace: System.Net
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 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.