2 implementations of SetAuthenticatorKeyAsync
Microsoft.AspNetCore.Identity.InMemory.Test (1)
InMemoryUserStore.cs (1)
397public Task SetAuthenticatorKeyAsync(TUser user, string key, CancellationToken cancellationToken)
Microsoft.Extensions.Identity.Stores (1)
UserStoreBase.cs (1)
896public virtual Task SetAuthenticatorKeyAsync(TUser user, string key, CancellationToken cancellationToken)
1 reference to SetAuthenticatorKeyAsync
Microsoft.Extensions.Identity.Core (1)
UserManager.cs (1)
2419await store.SetAuthenticatorKeyAsync(user, GenerateNewAuthenticatorKey(), CancellationToken).ConfigureAwait(false);