3 implementations of ValidateAsync
Microsoft.AspNetCore.Identity (1)
DataProtectorTokenProvider.cs (1)
108
public virtual async Task<bool>
ValidateAsync
(string purpose, string token, UserManager<TUser> manager, TUser user)
Microsoft.Extensions.Identity.Core (2)
AuthenticatorTokenProvider.cs (1)
48
public virtual async Task<bool>
ValidateAsync
(string purpose, string token, UserManager<TUser> manager, TUser user)
TotpSecurityStampBasedTokenProvider.cs (1)
59
public virtual async Task<bool>
ValidateAsync
(string purpose, string token, UserManager<TUser> manager, TUser user)
2 references to ValidateAsync
Microsoft.Extensions.Identity.Core (2)
UserManager.cs (2)
1885
var result = await provider.
ValidateAsync
(purpose, token, this, user).ConfigureAwait(false);
1992
var result = await provider.
ValidateAsync
("TwoFactor", token, this, user).ConfigureAwait(false);