HttpContentHeaderCollection.ContentLocation 属性

定义

获取或设置 HTTP 内容上的 HTTP Content-Location 标头的值。

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

void ContentLocation(Uri value);
public System.Uri ContentLocation { get; set; }
var uri = httpContentHeaderCollection.contentLocation;
httpContentHeaderCollection.contentLocation = uri;
Public Property ContentLocation As Uri

属性值

HTTP 内容上的 HTTP Content-Location 标头的值。 null 值表示标头不存在。

注解

以下示例代码演示了一种方法,用于使用 HttpContentHeaderCollection 对象上的 ContentLocation 属性获取或设置 HTTP 内容的 Content-Location 标头值。

// Content-Location header
// Uri
void DemoContentLocation(IHttpContent content) {
    var h = content.Headers;

    h.ContentLocation = new Uri("http://example.com/");

    var header = h.ContentLocation;
    uiLog.Text += "\nCONTENT LOCATION HEADER\n";

    uiLog.Text += string.Format("ContentLocation: ToString: {0}\n\n", header.ToString());
}

适用于

另请参阅