Freigeben über


PassportAuthentication.RedirectUrl Eigenschaft

Definition

Ruft die URL ab, an die die Anforderung umgeleitet wird, oder legt diese fest.

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

Eigenschaftswert

String

Die URL der Seite, an die die Anforderung umgeleitet wird.

Attribute

Beispiele

Im folgenden Codebeispiel wird die Verwendung der RedirectUrl-Eigenschaft veranschaulicht.


// 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

Hinweise

Die RedirectUrl URL der Seite, zu der die Anforderung umgeleitet werden muss, wenn die Passport-Authentifizierung erforderlich ist, und der Benutzer hat sich nicht mit der Passport-Authentifizierung angemeldet.

Gilt für