User.IsAuthenticated Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient une valeur qui indique si l'utilisateur a été authentifié.
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é identifié ; sinon False
.
Exemples
Cet exemple vérifie que l’utilisateur a été authentifié avant d’accéder à une ressource.
If My.User.IsAuthenticated Then
' Insert code to access a resource here.
End If
Remarques
La My.User.IsAuthenticated
propriété permet à votre code de déterminer si l’utilisateur actuel a été authentifié.
Notes
Le comportement exact de l’objet My.User
dépend du type de l’application et du système d’exploitation sur lequel l’application s’exécute. Pour plus d’informations, consultez vue d’ensemble de la User classe.
Disponibilité par type de projet
Type de projet | Disponible |
---|---|
Application Windows | Oui |
Bibliothèque de classes | Oui |
Application console | Oui |
Bibliothèque de contrôles Windows | Oui |
Bibliothèque de contrôles web | Oui |
Service Windows | Oui |
Site web | Oui |