PassportIdentity.IsAuthenticated Propriété

Définition

Obtient une valeur indiquant si l'utilisateur est authentifié par une autorité Passport. Cette classe est déconseillée.

public:
 property bool IsAuthenticated { bool get(); };
public bool IsAuthenticated { get; }
member this.IsAuthenticated : bool
Public ReadOnly Property IsAuthenticated As Boolean

Valeur de propriété

true si l'utilisateur a été authentifié par un site central responsable des authentifications Passport ; sinon, false.

Implémente

Exemples

// Declare new PassportIdendity object as variable newPass.
System.Web.Security.PassportIdentity newPass = new System.Web.Security.PassportIdentity();
// Set the string sIsAuth to the users SignIn status (a boolean) converted to a string.
String sIsAuth = newPass.IsAuthenticated.ToString();
' Declare new PassportIdendity object as variable newPass.
Dim newPass As System.Web.Security.PassportIdentity = New System.Web.Security.PassportIdentity()
' Set the string sIsAuth to the users SignIn status (a boolean) converted to a string.
Dim sIsAuth As String = newPass.IsAuthenticated.ToString()

Remarques

Cette classe a été déconseillée et n’est plus prise en charge. Microsoft Passport Network a été remplacé par Windows Live ID.

S’applique à