2 implementations of RemoveTokenAsync
Microsoft.AspNetCore.Identity.InMemory.Test (1)
InMemoryUserStore.cs (1)
369public Task RemoveTokenAsync(TUser user, string loginProvider, string name, CancellationToken cancellationToken)
Microsoft.Extensions.Identity.Stores (1)
UserStoreBase.cs (1)
854public virtual async Task RemoveTokenAsync(TUser user, string loginProvider, string name, CancellationToken cancellationToken)
1 reference to RemoveTokenAsync
Microsoft.Extensions.Identity.Core (1)
UserManager.cs (1)
2383await store.RemoveTokenAsync(user, loginProvider, tokenName, CancellationToken).ConfigureAwait(false);