IUserEmailStore<TUser>.GetNormalizedEmailAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the normalized email for the specified user
.
public:
System::Threading::Tasks::Task<System::String ^> ^ GetNormalizedEmailAsync(TUser user, System::Threading::CancellationToken cancellationToken);
public System.Threading.Tasks.Task<string> GetNormalizedEmailAsync (TUser user, System.Threading.CancellationToken cancellationToken);
public System.Threading.Tasks.Task<string?> GetNormalizedEmailAsync (TUser user, System.Threading.CancellationToken cancellationToken);
abstract member GetNormalizedEmailAsync : 'User * System.Threading.CancellationToken -> System.Threading.Tasks.Task<string>
Public Function GetNormalizedEmailAsync (user As TUser, cancellationToken As CancellationToken) As Task(Of String)
Parameters
- user
- TUser
The user whose email address to retrieve.
- cancellationToken
- CancellationToken
The CancellationToken used to propagate notifications that the operation should be canceled.
Returns
The task object containing the results of the asynchronous lookup operation, the normalized email address if any associated with the specified user.