HttpResponseHeaderCollection.Location 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
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 回應上 位置 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());
}