SignInManager<TUser>.CheckPasswordSignInAsync Méthode
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.
Tente une connexion par mot de passe pour un utilisateur.
public:
virtual System::Threading::Tasks::Task<Microsoft::AspNetCore::Identity::SignInResult ^> ^ CheckPasswordSignInAsync(TUser user, System::String ^ password, bool lockoutOnFailure);
public virtual System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.SignInResult> CheckPasswordSignInAsync (TUser user, string password, bool lockoutOnFailure);
abstract member CheckPasswordSignInAsync : 'User * string * bool -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.SignInResult>
override this.CheckPasswordSignInAsync : 'User * string * bool -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.SignInResult>
Public Overridable Function CheckPasswordSignInAsync (user As TUser, password As String, lockoutOnFailure As Boolean) As Task(Of SignInResult)
Paramètres
- user
- TUser
Utilisateur à connecter.
- password
- String
Mot de passe avec lequel tenter de se connecter.
- lockoutOnFailure
- Boolean
Indicateur indiquant si le compte d’utilisateur doit être verrouillé en cas d’échec de la connexion.
Retours
Objet de tâche représentant l’opération asynchrone contenant pour la tentative de connexion.