HttpListenerResponse.Headers 属性

定义

获取或设置服务器返回的标头名称/值对集合。

public:
 property System::Net::WebHeaderCollection ^ Headers { System::Net::WebHeaderCollection ^ get(); void set(System::Net::WebHeaderCollection ^ value); };
public System.Net.WebHeaderCollection Headers { get; set; }
member this.Headers : System.Net.WebHeaderCollection with get, set
Public Property Headers As WebHeaderCollection

属性值

WebHeaderCollection 实例,包含要包括在响应中的所有显式设置的 HTTP 标头。

例外

为设置操作指定的 WebHeaderCollection 实例对响应无效。

示例

下面的代码示例演示如何在 中 WebHeaderCollection显示 标头。

    // Displays the header information that accompanied a request.
public static void DisplayWebHeaderCollection(HttpListenerResponse response)
{
    WebHeaderCollection headers = response.Headers;
    // Get each header and display each value.
    foreach (string key in headers.AllKeys)
    {
        string[] values = headers.GetValues(key);
        if(values.Length > 0)
        {
            Console.WriteLine("The values of the {0} header are: ", key);
            foreach (string value in values)
            {
                Console.WriteLine("   {0}", value);
            }
        }
        else
        {
            Console.WriteLine("There is no value associated with the header.");
        }
    }
}
' Displays the header information that accompanied a request.
Public Shared Sub DisplayWebHeaderCollection(ByVal response As HttpListenerResponse)
    Dim headers As WebHeaderCollection = response.Headers

    ' Get each header and display each value.
    For Each key As String In headers.AllKeys
        Dim values As String() = headers.GetValues(key)

        If values.Length > 0 Then
            Console.WriteLine("The values of the {0} header are: ", key)

            For Each value As String In values
                Console.WriteLine("   {0}", value)
            Next
        Else
            Console.WriteLine("There is no value associated with the header.")
        End If
    Next
End Sub

注解

响应标头包含元数据信息,例如响应的日期和时间、响应服务器的标识以及响应正文中包含的数据的 MIME 类型。

有关响应标头的完整列表,请参阅 HttpResponseHeader 枚举。

注意

如果尝试使用 Headers 属性设置 Content-Length、Keep-Alive、Transfer-Encoding 或 WWW-Authenticate 标头,将引发异常。 KeepAlive使用 或 ContentLength64 属性设置这些标头。 不能手动设置 Transfer-Encoding 或 WWW-Authenticate 标头。

适用于

另请参阅