1 implementation of FindByEmailAsync
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);