Condividi tramite


SignInManager<TUser>.CheckPasswordSignInAsync Metodo

Definizione

Tenta di accedere a una password per un utente.

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)

Parametri

user
TUser

Utente da accedere.

password
String

Password con cui tentare di accedere.

lockoutOnFailure
Boolean

Flag che indica se l'account utente deve essere bloccato se l'accesso ha esito negativo.

Restituisce

Oggetto attività che rappresenta l'operazione asincrona contenente l'oggetto per il tentativo di accesso.

Si applica a