IHttpContent.Headers Property

Definition

Get a collection of content headers set on the IHttpContent.

public:
 property HttpContentHeaderCollection ^ Headers { HttpContentHeaderCollection ^ get(); };
HttpContentHeaderCollection Headers();
public HttpContentHeaderCollection Headers { get; }
var httpContentHeaderCollection = iHttpContent.headers;
Public ReadOnly Property Headers As HttpContentHeaderCollection

Property Value

A collection of content headers set on the IHttpContent.

Remarks

The Headers property returns an HttpContentHeaderCollection object that can be used to get or set the specific headers on the HTTP content in an HTTP request or HTTP response.

Applies to

See also