WebClient::ResponseHeaders Property
.NET Framework (current version)
Gets a collection of header name/value pairs associated with the response.
Assembly: System (in System.dll)
Property Value
Type: System.Net::WebHeaderCollection^A 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{0} = {1}", myWebHeaderCollection->GetKey( i ), myWebHeaderCollection->Get( i ) ); }
.NET Framework
Available since 1.1
Silverlight
Available since 3.0
Windows Phone Silverlight
Available since 7.0
Available since 1.1
Silverlight
Available since 3.0
Windows Phone Silverlight
Available since 7.0
Show: