HttpContentHeaderCollection.ContentLocation プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
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());
}