3 implementations of RemoveLoginAsync
Microsoft.AspNetCore.Identity.EntityFrameworkCore (2)
UserOnlyStore.cs (2)
432
public override async Task
RemoveLoginAsync
RemoveLoginAsync
(TUser user, string loginProvider, string providerKey,
Microsoft.Extensions.Identity.Stores (1)
UserStoreBase.cs (1)
405
public 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)
1098
await loginStore.
RemoveLoginAsync
(user, loginProvider, providerKey, CancellationToken).ConfigureAwait(false);