HttpResponseMessageProperty.Headers 属性

定义

从 HTTP 响应中获取 HTTP 标头。

public:
 property System::Net::WebHeaderCollection ^ Headers { System::Net::WebHeaderCollection ^ get(); };
public System.Net.WebHeaderCollection Headers { get; }
member this.Headers : System.Net.WebHeaderCollection
Public ReadOnly Property Headers As WebHeaderCollection

属性值

返回一个 WebHeaderCollection,它包含 HTTP 响应中的 HTTP 标头。

示例

下面的示例演示如何从 HTTP 响应中获取 HTTP 标头:

WebHeaderCollection whCollection =
responseProperty.Headers;

适用于