次の方法で共有


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());
}

適用対象

こちらもご覧ください