3 implementations of GetTokenAsync
Identity.DefaultUI.WebSite (1)
src\Identity\test\InMemory.Test\InMemoryUserStore.cs (1)
383public Task<string> GetTokenAsync(TUser user, string loginProvider, string name, CancellationToken cancellationToken)
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)
1915return store.GetTokenAsync(user, loginProvider, tokenName, CancellationToken);