3 implementations of SetTokenAsync
Identity.DefaultUI.WebSite (1)
src\Identity\test\InMemory.Test\InMemoryUserStore.cs (1)
345public Task SetTokenAsync(TUser user, string loginProvider, string name, string value, CancellationToken cancellationToken)
Microsoft.AspNetCore.Identity.InMemory.Test (1)
InMemoryUserStore.cs (1)
345public Task SetTokenAsync(TUser user, string loginProvider, string name, string value, CancellationToken cancellationToken)
Microsoft.Extensions.Identity.Stores (1)
UserStoreBase.cs (1)
828public virtual async Task SetTokenAsync(TUser user, string loginProvider, string name, string? value, CancellationToken cancellationToken)
1 reference to SetTokenAsync
Microsoft.Extensions.Identity.Core (1)
UserManager.cs (1)
1935await store.SetTokenAsync(user, loginProvider, tokenName, tokenValue, CancellationToken).ConfigureAwait(false);