다음을 통해 공유


HttpResponseHeaderCollection.Location 속성

정의

HTTP 응답에서 값 또는 위치 HTTP 헤더를 나타내는 Uri를 가져오거나 설정합니다.

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

적용 대상

추가 정보