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