HttpResponseHeaderCollection.Allow 属性

定义

获取 HttpMethod 对象的 HttpMethodHeaderValueCollection,这些对象表示 HTTP 响应上的 Allow HTTP 标头的值。

public:
 property HttpMethodHeaderValueCollection ^ Allow { HttpMethodHeaderValueCollection ^ get(); };
HttpMethodHeaderValueCollection Allow();
public HttpMethodHeaderValueCollection Allow { get; }
var httpMethodHeaderValueCollection = httpResponseHeaderCollection.allow;
Public ReadOnly Property Allow As HttpMethodHeaderValueCollection

属性值

HttpMethod 对象的集合,这些对象表示 HTTP 响应上的 Allow HTTP 标头的值。 空集合表示标头不存在。

注解

Allow 属性表示 HTTP 响应上的 Allow HTTP 标头的值。 Allow 标头是 HTTP 方法的列表, (GET、PUT 和 POST,例如 HTTP 服务器允许) 。

下面的示例代码演示了一个方法,该方法使用 HttpResponseHeaderCollection 对象的 Allow 属性获取和设置 HttpResponseMessage 对象上的 Allow 标头。

public void DemonstrateHeaderResponseAllow() {
    var response = new HttpResponseMessage();

    // Set the header with a string
    response.Headers.Allow.TryParseAdd ("GET");

    // Set the header with a strong type
    response.Headers.Allow.Add(HttpMethod.Patch);

    // Get the strong type out
    foreach (var value in response.Headers.Allow) {
        System.Diagnostics.Debug.WriteLine("Allow value: {0}", value.Method);
    }

    // The ToString() is useful for diagnostics, too.
    System.Diagnostics.Debug.WriteLine("The Allow ToString() results: {0}", response.Headers.Allow.ToString());
}

适用于

另请参阅