HttpResponse.RedirectLocation プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
HTTP Location
ヘッダーの値を取得または設定します。
public:
property System::String ^ RedirectLocation { System::String ^ get(); void set(System::String ^ value); };
public string RedirectLocation { get; set; }
member this.RedirectLocation : string with get, set
Public Property RedirectLocation As String
プロパティ値
HTTP Location
ヘッダーのクライアントに送信される絶対 URI。
例外
HTTP ヘッダーは既に書き込まれています。
例
次の例は、HTTP 301 応答コードを使用して永続的なリダイレクトをコーディングするときに、このプロパティを使用してリダイレクト URL を指定する方法を示しています。
Response.StatusCode = 301;
Response.Status = "301 Moved Permanently";
Response.RedirectLocation = "http://www.newurl.com ";
Response.End();
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET