8 references to RemoveLoginAsync
Microsoft.AspNetCore.Identity.Specification.Tests (1)
UserManagerSpecificationTests.cs (1)
652IdentityResultAssert.IsSuccess(await manager.RemoveLoginAsync(user, login.LoginProvider, login.ProviderKey));
Microsoft.AspNetCore.Identity.Test (5)
UserManagerTest.cs (5)
1053await Assert.ThrowsAsync<NotSupportedException>(async () => await manager.RemoveLoginAsync(null, null, null)); 1368async () => await manager.RemoveLoginAsync(null, null, null)); 1370async () => await manager.RemoveLoginAsync(null, "", null)); 1413async () => await manager.RemoveLoginAsync(null, "", "")); 1508await Assert.ThrowsAsync<ObjectDisposedException>(() => manager.RemoveLoginAsync(null, null, null));
Microsoft.AspNetCore.Identity.UI (2)
Areas\Identity\Pages\V4\Account\Manage\ExternalLogins.cshtml.cs (1)
115var result = await _userManager.RemoveLoginAsync(user, loginProvider, providerKey);
Areas\Identity\Pages\V5\Account\Manage\ExternalLogins.cshtml.cs (1)
115var result = await _userManager.RemoveLoginAsync(user, loginProvider, providerKey);