Share via


Headers Property

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

When overridden in a derived class, gets a collection of header name-value pairs associated with this request.

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

Syntax

'Declaration
Public Overridable ReadOnly Property Headers As WebHeaderCollection
public virtual WebHeaderCollection Headers { get; }
public:
virtual property WebHeaderCollection^ Headers {
    WebHeaderCollection^ get ();
}
abstract Headers : WebHeaderCollection with get
override Headers : WebHeaderCollection with get
function get Headers () : WebHeaderCollection

Property Value

Type: System.Net. . :: . .WebHeaderCollection
An instance of the WebHeaderCollection class that contains header values associated with this response.

Remarks

The Headers property contains the name-value header pairs returned in the response.

Note

The WebResponse class is an abstract class. The actual behavior of WebResponse instances at run time is determined by the descendant class returned by WebRequest..::..GetResponse. For more information about default values and exceptions, please see the documentation for the descendant classes, such as HttpWebResponse and FileWebResponse.

.NET Framework Security

See Also

Reference

WebResponse Class

System.Net Namespace