Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

WebClient::ResponseHeaders Property

 

Gets a collection of header name/value pairs associated with the response.

Namespace:   System.Net
Assembly:  System (in System.dll)

public:
property WebHeaderCollection^ ResponseHeaders {
	WebHeaderCollection^ get();
}

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
Return to top
Show:
© 2017 Microsoft