UserManager<TUser>.VerifyUserTokenAsync Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Restituisce un flag che indica se l'oggetto specificato token
è valido per l'oggetto user
specificato e 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)
Parametri
- user
- TUser
L'utente per convalidare il token.
- tokenProvider
- String
Provider di token usato per generare il token.
- purpose
- String
Lo scopo per cui deve essere generato il token.
- token
- String
Token da convalidare
Restituisce
Oggetto Task che rappresenta l'operazione asincrona, restituendo true se è token
valido; in caso contrario, false.