3 implementations of RemoveLoginAsync
Microsoft.AspNetCore.Identity.EntityFrameworkCore (2)
UserOnlyStore.cs (2)
432public override async Task RemoveLoginAsyncRemoveLoginAsync(TUser user, string loginProvider, string providerKey,
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);