UserStoreBase<TUser,TKey,TUserClaim,TUserLogin,TUserToken>.FindByEmailAsync Method

Definition

Gets the user, if any, associated with the specified, normalized email address.

public abstract System.Threading.Tasks.Task<TUser> FindByEmailAsync (string normalizedEmail, System.Threading.CancellationToken cancellationToken = default);
public abstract System.Threading.Tasks.Task<TUser?> FindByEmailAsync (string normalizedEmail, System.Threading.CancellationToken cancellationToken = default);
abstract member FindByEmailAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<'User (requires 'User :> Microsoft.AspNetCore.Identity.IdentityUser<'Key>)>
Public MustOverride Function FindByEmailAsync (normalizedEmail As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of TUser)

Parameters

normalizedEmail
String

The normalized email address to return the user for.

cancellationToken
CancellationToken

The CancellationToken used to propagate notifications that the operation should be canceled.

Returns

Task<TUser>

The task object containing the results of the asynchronous lookup operation, the user if any associated with the specified normalized email address.

Implements

Applies to