NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

HttpWebResponse.GetResponseHeader

Gets a specified header value returned with the response.

[Visual Basic]
Public Function GetResponseHeader( _
   ByVal headerName As String _
) As String
[C#]
public string GetResponseHeader(
   string headerName
);
[C++]
public: String* GetResponseHeader(
   String* headerName
);
[JScript]
public function GetResponseHeader(
   headerName : String
) : String;

Parameters

headerName
The header value to return.

Return Value

The value of the header specified.

See Also

HttpWebResponse Class | HttpWebResponse Members | System.Net Namespace