次の方法で共有


PassportAuthentication.RedirectUrl プロパティ

定義

要求のリダイレクト先の 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 を指定します。

適用対象