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