UserManager<TUser>.VerifyUserTokenAsync 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.
Retourne un indicateur indiquant si le spécifié token
est valide pour le donné user
et purpose
.
public:
virtual System::Threading::Tasks::Task<bool> ^ VerifyUserTokenAsync(TUser user, System::String ^ tokenProvider, System::String ^ purpose, System::String ^ token);
public virtual System.Threading.Tasks.Task<bool> VerifyUserTokenAsync (TUser user, string tokenProvider, string purpose, string token);
abstract member VerifyUserTokenAsync : 'User * string * string * string -> System.Threading.Tasks.Task<bool>
override this.VerifyUserTokenAsync : 'User * string * string * string -> System.Threading.Tasks.Task<bool>
Public Overridable Function VerifyUserTokenAsync (user As TUser, tokenProvider As String, purpose As String, token As String) As Task(Of Boolean)
Paramètres
- user
- TUser
Utilisateur sur lequel valider le jeton.
- tokenProvider
- String
Fournisseur de jetons utilisé pour générer le jeton.
- purpose
- String
Objectif pour lequel le jeton doit être généré.
- token
- String
Jeton à valider
Retours
Task qui représente l’opération asynchrone, renvoyant true si est token
valide, sinon false.