AuthenticationSection.Passport Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Cuidado
This property is obsolete. The Passport authentication product is no longer supported and has been superseded by Live ID.
Obtém a propriedade do elemento Passport.
public:
property System::Web::Configuration::PassportAuthentication ^ Passport { System::Web::Configuration::PassportAuthentication ^ get(); };
[System.Configuration.ConfigurationProperty("passport")]
public System.Web.Configuration.PassportAuthentication Passport { get; }
[System.Configuration.ConfigurationProperty("passport")]
[System.Obsolete("This property is obsolete. The Passport authentication product is no longer supported and has been superseded by Live ID.")]
public System.Web.Configuration.PassportAuthentication Passport { get; }
[<System.Configuration.ConfigurationProperty("passport")>]
member this.Passport : System.Web.Configuration.PassportAuthentication
[<System.Configuration.ConfigurationProperty("passport")>]
[<System.Obsolete("This property is obsolete. The Passport authentication product is no longer supported and has been superseded by Live ID.")>]
member this.Passport : System.Web.Configuration.PassportAuthentication
Public ReadOnly Property Passport As PassportAuthentication
Valor da propriedade
Uma Passport propriedade de elemento que contém informações usadas durante a autenticação baseada em passaporte.
- Atributos
Exemplos
O exemplo de código a seguir mostra como usar a propriedade do Passport elemento.
// Get the current Passport property.
PassportAuthentication currentPassport =
authenticationSection.Passport;
// Get the Passport redirect URL.
string passRedirectUrl =
currentPassport.RedirectUrl;
' Get the current Passport property.
Dim currentPassport _
As PassportAuthentication = _
authenticationSection.Passport
' Get the Passport redirect URL.
Dim passRedirectUrl As String = _
currentPassport.RedirectUrl