PassportIdentity.GetIsAuthenticated Metodo

Definizione

Indica se l'utente è stato autenticato da un'autorità Passport. Questa classe è deprecata.

Overload

GetIsAuthenticated(Int32, Boolean, Boolean)

Indica se l'utente è autenticato da un sito centrale responsabile per l'autenticazione Passport. Questa classe è deprecata.

GetIsAuthenticated(Int32, Int32, Int32)

Indica se l'utente è stato autenticato da un'autorità Passport. Questa classe è deprecata.

Commenti

Questa classe è stata deprecata e non è più supportata. Microsoft Passport Network è stato sostituito da Windows Live ID.

GetIsAuthenticated(Int32, Boolean, Boolean)

Indica se l'utente è autenticato da un sito centrale responsabile per l'autenticazione Passport. Questa classe è deprecata.

public:
 bool GetIsAuthenticated(int iTimeWindow, bool bForceLogin, bool bCheckSecure);
public bool GetIsAuthenticated (int iTimeWindow, bool bForceLogin, bool bCheckSecure);
member this.GetIsAuthenticated : int * bool * bool -> bool
Public Function GetIsAuthenticated (iTimeWindow As Integer, bForceLogin As Boolean, bCheckSecure As Boolean) As Boolean

Parametri

iTimeWindow
Int32

Specifica l'intervallo di tempo durante il quale è necessario che sia stato effettuato l'ultimo accesso dei membri al dominio chiamante. Passare -1 per indicare che Passport deve usare il valore predefinito.

bForceLogin
Boolean

Determina il modo in cui verrà usato il parametro iTimeWindow.

bCheckSecure
Boolean

Abilita la verifica dell'accesso crittografato. Poiché l'accesso SSL non è disponibile come opzione nelle versioni correnti dei server di accesso, il valore passato viene ignorato a livello del server.

Restituisce

Boolean

true se l'utente è stato autenticato da un'autorità Passport; in caso contrario, false.

Commenti

Questa classe è stata deprecata e non è più supportata. Microsoft Passport Network è stato sostituito da Windows Live ID.

Si applica a

GetIsAuthenticated(Int32, Int32, Int32)

Indica se l'utente è stato autenticato da un'autorità Passport. Questa classe è deprecata.

public:
 bool GetIsAuthenticated(int iTimeWindow, int iForceLogin, int iCheckSecure);
public bool GetIsAuthenticated (int iTimeWindow, int iForceLogin, int iCheckSecure);
member this.GetIsAuthenticated : int * int * int -> bool
Public Function GetIsAuthenticated (iTimeWindow As Integer, iForceLogin As Integer, iCheckSecure As Integer) As Boolean

Parametri

iTimeWindow
Int32

Specifica l'intervallo di tempo durante il quale è necessario che sia stato effettuato l'ultimo accesso dei membri al dominio chiamante. Il valore -1 indica che Passport deve usare il valore predefinito, 0 rappresenta false e 1 true.

iForceLogin
Int32

Determina il modo in cui verrà usato il parametro iTimeWindow. Il valore -1 indica che Passport deve usare il valore predefinito, 0 rappresenta false e 1 true.

iCheckSecure
Int32

Abilita la verifica dell'accesso crittografato. Il valore -1 indica che Passport deve usare il valore predefinito, 0 rappresenta false e 1 true.

Un valore 10 o 100 per i server di accesso Passport versione 2.1 specifica SecureLevel 10 o 100 per il metodo IsAuthenticated di Passport Manager. Per altre informazioni, vedere la documentazione relativa a Passport SDK versione 2.1.

L'accesso SSL non è disponibile come opzione nei server di accesso Passport versione 1.4. Il valore di iCheckSecure viene ignorato a livello del server.

Restituisce

Boolean

true se l'utente è autenticato da un sito centrale responsabile per l'autenticazione Passport; in caso contrario, false.

Esempio

<!-- 
This example demonstrates implementing the soft sign-in authentication approach. 
In order for the example to work, the following requirements must be met. 
You can find details on these requirements in the Passport SDK documentation.

1. You must modify the Web.config file associated with this page so that 
authentication mode is set to "Passport".
2. You must have the Passport SDK installed.
3. You must have a Passport Site ID for the site where your page resides. 
If your Site ID is in the PREP environment, you will also need a PREP Passport.
4. You must have installed the encryption key you received after registering 
your site and receiving a site ID.
5. You must have the Passport Manager object settings correctly configured for 
your site.
-->

<!-- 
This example demonstrates implementing the soft sign-in authentication approach. 
In order for the example to work, the following requirements must be met. 
You can find details on these requirements in the Passport SDK documentation.

1. You must modify the Web.config file associated with this page so that 
authentication mode is set to "Passport".
2. You must have the Passport SDK installed.
3. You must have a Passport Site ID for the site where your page resides. 
If your Site ID is in the PREP environment, you will also need a PREP Passport.
4. You must have installed the encryption key you received after registering your 
site and receiving a site ID.
5. You must have the Passport Manager object settings correctly configured for your site.
-->

<!-- To view this code example in a fully-working sample, see the 
PassportIdentity Class topic. -->

<!-- To view this code example in a fully-working sample, see the 
PassportIdentity Class topic. -->

        PassportIdentity identity = (this.Context.User.Identity as PassportIdentity);    
        // Determine whether the user is already signed in with a valid
        // and current ticket. Passing -1 for the parameter values 
        // indicates the default values will be used.
        if (identity.GetIsAuthenticated(-1, -1, -1))
        {
            this.Response.Write("Welcome to the site.<br /><br />");
            // Print the Passport sign in button on the screen.
            this.Response.Write(identity.LogoTag2());
            // Make sure the user has core profile information before
            // trying to access it.
            if (identity.HasProfile("core"))
            {
                this.Response.Write("<b>You have been authenticated as " + 
                    "Passport identity:" + identity.Name + "</b></p>");
            }
        }

        // Determine whether the user has a ticket.
        else if (identity.HasTicket)
        {
            // If the user has a ticket but wasn't authenticated, that 
            // means the ticket is stale, so the login needs to be refreshed.
            // Passing true as the fForceLogin parameter value indicates that 
            // silent refresh will be accepted.
            identity.LoginUser(null, -1, true, null, -1, null, -1, true, null);
        }
        Dim identity As PassportIdentity = Me.Context.User.Identity
        ' Determine whether the user is already signed in with a valid
        ' and current ticket. Passing -1 for the parameter values 
        ' indicates the default values will be used.
        If (identity.GetIsAuthenticated(-1, -1, -1)) Then
            Me.Response.Write("Welcome to the site.<br /><br />")
            ' Print the Passport sign in button on the screen.
            Me.Response.Write(identity.LogoTag2())
            ' Make sure the user has core profile information before
            ' trying to access it.
            If (identity.HasProfile("core")) Then
                Me.Response.Write("<b>You have been authenticated as " & _ 
                "Passport identity:" & identity.Name & "</b></p>")
            End If

        ' Determine whether the user has a ticket.
        ElseIf identity.HasTicket Then
            ' If the user has a ticket but wasn't authenticated, that 
            ' means the ticket is stale, so the login needs to be refreshed.
            ' Passing true as the fForceLogin parameter value indicates that 
            ' silent refresh will be accepted.
            identity.LoginUser(Nothing, -1, True, Nothing, -1, Nothing, _
                -1, True, Nothing)

Commenti

Questa classe è stata deprecata e non è più supportata. Microsoft Passport Network è stato sostituito da Windows Live ID.

Si applica a