6 implementations of AddLoginAsync
Microsoft.AspNetCore.Identity.EntityFrameworkCore (2)
UserOnlyStore.cs (2)
413public override Task AddLoginAsyncAddLoginAsync(TUser user, UserLoginInfo login,
Microsoft.AspNetCore.Identity.InMemory.Test (1)
InMemoryUserStore.cs (1)
158public virtual Task AddLoginAsync(TUser user, UserLoginInfo login,
Microsoft.AspNetCore.Identity.Test (2)
UserManagerTest.cs (2)
1648public Task AddLoginAsync(PocoUser user, UserLoginInfo login, CancellationToken cancellationToken = default(CancellationToken)) 1954public Task AddLoginAsync(PocoUser user, UserLoginInfo login, CancellationToken cancellationToken = default(CancellationToken))
Microsoft.Extensions.Identity.Stores (1)
UserStoreBase.cs (1)
395public abstract Task AddLoginAsync(TUser user, UserLoginInfo login, CancellationToken cancellationToken = default(CancellationToken));
1 reference to AddLoginAsync
Microsoft.Extensions.Identity.Core (1)
UserManager.cs (1)
1145await loginStore.AddLoginAsync(user, login, CancellationToken).ConfigureAwait(false);