2 implementations of GetTokenAsync
Microsoft.AspNetCore.Identity.InMemory.Test (1)
InMemoryUserStore.cs (1)
383public Task<string> GetTokenAsync(TUser user, string loginProvider, string name, CancellationToken cancellationToken)
Microsoft.Extensions.Identity.Stores (1)
UserStoreBase.cs (1)
875public virtual async Task<string?> GetTokenAsync(TUser user, string loginProvider, string name, CancellationToken cancellationToken)
1 reference to GetTokenAsync
Microsoft.Extensions.Identity.Core (1)
UserManager.cs (1)
2332return store.GetTokenAsync(user, loginProvider, tokenName, CancellationToken);