3 implementations of FindByEmailAsync
Microsoft.AspNetCore.Identity.EntityFrameworkCore (2)
UserOnlyStore.cs (2)
493
public override Task<TUser?>
FindByEmailAsync
FindByEmailAsync
(string normalizedEmail, CancellationToken cancellationToken = default(CancellationToken))
Microsoft.Extensions.Identity.Stores (1)
UserStoreBase.cs (1)
543
public abstract Task<TUser?>
FindByEmailAsync
(string normalizedEmail, CancellationToken cancellationToken = default(CancellationToken));
2 references to FindByEmailAsync
Microsoft.Extensions.Identity.Core (2)
UserManager.cs (2)
1562
var user = await store.
FindByEmailAsync
(email, CancellationToken).ConfigureAwait(false);
1574
user = await store.
FindByEmailAsync
(oldKey, CancellationToken).ConfigureAwait(false);