ApplicationUserStoreTUserFindByEmailAsync Method |
Gets the user, if any, associated with the specified, normalized email address.
Namespace: Kentico.MembershipAssembly: Kentico.Membership (in Kentico.Membership.dll) Version: 13.0.131
Syntax public Task<TUser> FindByEmailAsync(
string normalizedEmail,
CancellationToken cancellationToken
)
Parameters
- normalizedEmail
- Type: SystemString
The normalized email address to return the user for. - cancellationToken
- Type: System.ThreadingCancellationToken
The CancellationToken used to propagate notifications that the operation should be canceled.
Return Value
Type:
TaskTUser
The
TaskTResult containing the results of the asynchronous lookup operation, the user if any associated with the specified normalized email address.
Implements
IUserEmailStore.FindByEmailAsync(String, CancellationToken)See Also