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 descendant class, gets or sets the collection of header name/value pairs associated with the request.

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

Syntax

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

Property Value

Type: System.Net. . :: . .WebHeaderCollection
A WebHeaderCollection containing the header name/value pairs associated with this request.

Remarks

The Headers property contains a WebHeaderCollection instance containing the header information to send to the Internet resource.

Note

The WebRequest class is an abstract class. The actual behavior of WebRequest instances at run time is determined by the descendant class returned by the WebRequest..::..Create method. For more information about default values and exceptions, see the documentation for the descendant classes, such as HttpWebRequest and FileWebRequest.

.NET Framework Security

See Also

Reference

WebRequest Class

System.Net Namespace