7 implementations of RemoveLoginAsync
Identity.DefaultUI.WebSite (1)
src\Identity\test\InMemory.Test\InMemoryUserStore.cs (1)
172public Task RemoveLoginAsync(TUser user, string loginProvider, string providerKey,
Microsoft.AspNetCore.Identity.EntityFrameworkCore (2)
UserOnlyStore.cs (2)
389public override async Task RemoveLoginAsyncRemoveLoginAsync(TUser user, string loginProvider, string providerKey,
Microsoft.AspNetCore.Identity.InMemory.Test (1)
InMemoryUserStore.cs (1)
172public Task RemoveLoginAsync(TUser user, string loginProvider, string providerKey,
Microsoft.AspNetCore.Identity.Test (2)
UserManagerTest.cs (2)
1303public Task RemoveLoginAsync(PocoUser user, string loginProvider, string providerKey, CancellationToken cancellationToken = default(CancellationToken)) 1583public Task RemoveLoginAsync(PocoUser user, string loginProvider, string providerKey, CancellationToken cancellationToken = default(CancellationToken))
Microsoft.Extensions.Identity.Stores (1)
UserStoreBase.cs (1)
405public abstract Task RemoveLoginAsync(TUser user, string loginProvider, string providerKey, CancellationToken cancellationToken = default(CancellationToken));
1 reference to RemoveLoginAsync
Microsoft.Extensions.Identity.Core (1)
UserManager.cs (1)
932await loginStore.RemoveLoginAsync(user, loginProvider, providerKey, CancellationToken).ConfigureAwait(false);