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