7 references to GetEmailAsync
Microsoft.AspNetCore.Identity (2)
IdentityApiEndpointRouteBuilderExtensions.cs (2)
379var email = await userManager.GetEmailAsync(user); 462Email = await userManager.GetEmailAsync(user) ?? throw new NotSupportedException("Users must have an email."),
Microsoft.Extensions.Identity.Core (5)
EmailTokenProvider.cs (2)
23var email = await manager.GetEmailAsync(user).ConfigureAwait(false); 38var email = await manager.GetEmailAsync(user).ConfigureAwait(false);
UserClaimsPrincipalFactory.cs (1)
82var email = await UserManager.GetEmailAsync(user).ConfigureAwait(false);
UserManager.cs (1)
1595var email = await GetEmailAsync(user).ConfigureAwait(false);
UserValidator.cs (1)
84var email = await manager.GetEmailAsync(user).ConfigureAwait(false);