PassportAuthentication.RedirectUrl プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
要求のリダイレクト先の URL を取得または設定します。
public:
property System::String ^ RedirectUrl { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("redirectUrl", DefaultValue="internal")]
[System.Configuration.StringValidator]
public string RedirectUrl { get; set; }
[<System.Configuration.ConfigurationProperty("redirectUrl", DefaultValue="internal")>]
[<System.Configuration.StringValidator>]
member this.RedirectUrl : string with get, set
Public Property RedirectUrl As String
プロパティ値
要求のリダイレクト先のページの URL。
- 属性
例
次のコード例は、RedirectUrl プロパティの使用方法を示しています。
// Get the passport redirect URL
string redirectUrl = passport.RedirectUrl;
// Set passport redirect Url.
passport.RedirectUrl = "passportLogin.aspx";
if (!authenticationSection.SectionInformation.IsLocked)
configuration.Save();
' Get the passport redirect URL
Dim redirectUrl As String = passport.RedirectUrl
' Set the passport redirect Url.
passport.RedirectUrl = "passportLogin.aspx"
If Not authenticationSection.SectionInformation.IsLocked Then
configuration.Save()
End If
注釈
Passport RedirectUrl 認証が必要で、ユーザーが Passport 認証を使用してサインオンしていない場合に、要求をリダイレクトする必要があるページの URL を指定します。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET