8 references to SupportsUserEmail
Microsoft.AspNetCore.Identity (1)
IdentityApiEndpointRouteBuilderExtensions.cs (1)
62if (!userManager.SupportsUserEmail)
Microsoft.AspNetCore.Identity.Test (2)
UserClaimsPrincipalFactoryTest.cs (1)
48userManager.Setup(m => m.SupportsUserEmail).Returns(supportsUserEmail);
UserManagerTest.cs (1)
690Assert.False(manager.SupportsUserEmail);
Microsoft.AspNetCore.Identity.UI (4)
Areas\Identity\Pages\V4\Account\ExternalLogin.cshtml.cs (1)
247if (!_userManager.SupportsUserEmail)
Areas\Identity\Pages\V4\Account\Register.cshtml.cs (1)
186if (!_userManager.SupportsUserEmail)
Areas\Identity\Pages\V5\Account\ExternalLogin.cshtml.cs (1)
247if (!_userManager.SupportsUserEmail)
Areas\Identity\Pages\V5\Account\Register.cshtml.cs (1)
186if (!_userManager.SupportsUserEmail)
Microsoft.Extensions.Identity.Core (1)
UserClaimsPrincipalFactory.cs (1)
80if (UserManager.SupportsUserEmail)