4 references to FindByEmailAsync
Microsoft.AspNetCore.Identity (3)
IdentityApiEndpointRouteBuilderExtensions.cs (3)
197
if (await userManager.
FindByEmailAsync
(resendRequest.Email) is not { } user)
210
var user = await userManager.
FindByEmailAsync
(resetRequest.Email);
230
var user = await userManager.
FindByEmailAsync
(resetRequest.Email);
Microsoft.Extensions.Identity.Core (1)
UserValidator.cs (1)
97
var owner = await manager.
FindByEmailAsync
(email).ConfigureAwait(false);