다음을 통해 공유


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

속성 값

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

설명

RedirectUrl 는 요청 리디렉션되어야 Passport 인증 필수 항목이 며 사용자가 로그온 되지 않음 Passport 인증을 사용 하는 경우 페이지의 URL을 지정 합니다.

적용 대상