Click or drag to resize
ApplicationUserStoreTUserSetNormalizedEmailAsync Method
Sets the normalized email for the specified user.

Namespace: Kentico.Membership
Assembly: Kentico.Membership (in Kentico.Membership.dll) Version: 13.0.131
Syntax
C#
public Task SetNormalizedEmailAsync(
	TUser user,
	string normalizedEmail,
	CancellationToken cancellationToken
)

Parameters

user
Type: TUser
The user whose email address to set.
normalizedEmail
Type: SystemString
The normalized email to set for the specified user.
cancellationToken
Type: System.ThreadingCancellationToken
The CancellationToken used to propagate notifications that the operation should be canceled.

Return Value

Type: Task
The Task representing the asynchronous operation.

Implements

IUserEmailStore.SetNormalizedEmailAsync(UTP, String, CancellationToken)
See Also