SignInManager<TUser>.PasswordSignInAsync 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.
Surcharges
PasswordSignInAsync(String, String, Boolean, Boolean) |
Tente de connecter le spécifié |
PasswordSignInAsync(TUser, String, Boolean, Boolean) |
Tente de connecter le spécifié |
PasswordSignInAsync(String, String, Boolean, Boolean)
- Source:
- SignInManager.cs
- Source:
- SignInManager.cs
- Source:
- SignInManager.cs
Tente de connecter le spécifié userName
et password
la combinaison en tant qu’opération asynchrone.
public:
virtual System::Threading::Tasks::Task<Microsoft::AspNetCore::Identity::SignInResult ^> ^ PasswordSignInAsync(System::String ^ userName, System::String ^ password, bool isPersistent, bool lockoutOnFailure);
public virtual System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.SignInResult> PasswordSignInAsync (string userName, string password, bool isPersistent, bool lockoutOnFailure);
abstract member PasswordSignInAsync : string * string * bool * bool -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.SignInResult>
override this.PasswordSignInAsync : string * string * bool * bool -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.SignInResult>
Public Overridable Function PasswordSignInAsync (userName As String, password As String, isPersistent As Boolean, lockoutOnFailure As Boolean) As Task(Of SignInResult)
Paramètres
- userName
- String
Nom d’utilisateur à connecter.
- password
- String
Mot de passe avec lequel tenter de se connecter.
- isPersistent
- Boolean
Indicateur indiquant si le cookie de connexion doit persister après la fermeture du navigateur.
- lockoutOnFailure
- Boolean
Indicateur indiquant si le compte d’utilisateur doit être verrouillé si la connexion échoue.
Retours
Objet de tâche représentant l’opération asynchrone contenant le pour la tentative de connexion.
S’applique à
PasswordSignInAsync(TUser, String, Boolean, Boolean)
- Source:
- SignInManager.cs
- Source:
- SignInManager.cs
- Source:
- SignInManager.cs
Tente de connecter le spécifié user
et password
la combinaison en tant qu’opération asynchrone.
public:
virtual System::Threading::Tasks::Task<Microsoft::AspNetCore::Identity::SignInResult ^> ^ PasswordSignInAsync(TUser user, System::String ^ password, bool isPersistent, bool lockoutOnFailure);
public virtual System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.SignInResult> PasswordSignInAsync (TUser user, string password, bool isPersistent, bool lockoutOnFailure);
abstract member PasswordSignInAsync : 'User * string * bool * bool -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.SignInResult>
override this.PasswordSignInAsync : 'User * string * bool * bool -> System.Threading.Tasks.Task<Microsoft.AspNetCore.Identity.SignInResult>
Public Overridable Function PasswordSignInAsync (user As TUser, password As String, isPersistent As Boolean, lockoutOnFailure As Boolean) As Task(Of SignInResult)
Paramètres
- user
- TUser
Utilisateur à connecter.
- password
- String
Mot de passe avec lequel tenter de se connecter.
- isPersistent
- Boolean
Indicateur indiquant si le cookie de connexion doit persister après la fermeture du navigateur.
- lockoutOnFailure
- Boolean
Indicateur indiquant si le compte d’utilisateur doit être verrouillé si la connexion échoue.
Retours
Objet de tâche représentant l’opération asynchrone contenant le pour la tentative de connexion.