6 implementations of RemoveLoginAsync
Microsoft.AspNetCore.Identity.EntityFrameworkCore (2)
UserOnlyStore.cs (2)
432public 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)
1653public Task RemoveLoginAsync(PocoUser user, string loginProvider, string providerKey, CancellationToken cancellationToken = default(CancellationToken)) 1959public 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)
1098await loginStore.RemoveLoginAsync(user, loginProvider, providerKey, CancellationToken).ConfigureAwait(false);