HttpListenerResponse.RedirectLocation 屬性

定義

取得或設定在這個回應中 HTTP Location 標頭的值。

public:
 property System::String ^ RedirectLocation { System::String ^ get(); void set(System::String ^ value); };
public string? RedirectLocation { get; set; }
public string RedirectLocation { get; set; }
member this.RedirectLocation : string with get, set
Public Property RedirectLocation As String

屬性值

String,包含 Location 標頭中要傳送至用戶端的絕對 URL。

例外狀況

為設定作業所指定的值為空字串 ("")。

這個物件已經關閉。

範例

下列程式碼範例示範如何設定此屬性。

public static void TemporaryRedirect(HttpListenerRequest request, HttpListenerResponse response)
{
    if (request.Url.OriginalString == @"http://www.contoso.com/index.html")
    {
        response.RedirectLocation = @"http://www.contoso.com/indexServer/index.html";
    }
}
Public Shared Sub TemporaryRedirect(ByVal request As HttpListenerRequest, ByVal response As HttpListenerResponse)
    If request.Url.OriginalString = "http://www.contoso.com/index.html" Then
        response.RedirectLocation = "http://www.contoso.com/indexServer/index.html"
    End If
End Sub

備註

標頭 Location 會指定用戶端導向來尋找要求資源的 URL。

注意

設定此屬性不會自動設定 StatusCode 屬性。

適用於

另請參閱