HttpResponseHeaderCollection.Location 属性

定义

获取或设置 URI,该 URI 表示 HTTP 响应中的值或 Location HTTP 标头。

public:
 property Uri ^ Location { Uri ^ get(); void set(Uri ^ value); };
Uri Location();

void Location(Uri value);
public System.Uri Location { get; set; }
var uri = httpResponseHeaderCollection.location;
httpResponseHeaderCollection.location = uri;
Public Property Location As Uri

属性值

表示 HTTP 响应中 Location HTTP 标头的值的 对象。 null 值表示标头不存在。

注解

以下示例代码演示了一个方法,该方法使用 HttpResponseHeaderCollection 对象的 Location 属性在 HttpResponseMessage 对象上设置 Location 标头。

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

    // Set the header with a strong type.
    response.Headers.Location = new Uri("http://example.com/");

    // Get the strong type out
    System.Diagnostics.Debug.WriteLine("Location absolute uri: {0}", response.Headers.Location.AbsoluteUri);

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

适用于

另请参阅