1 implementation of SetEmailAsync
Microsoft.Extensions.Identity.Stores (1)
UserStoreBase.cs (1)
480
public virtual Task
SetEmailAsync
(TUser user, string? email, CancellationToken cancellationToken = default(CancellationToken))
3 references to SetEmailAsync
Microsoft.AspNetCore.Identity (1)
IdentityApiEndpointRouteBuilderExtensions.cs (1)
78
await emailStore.
SetEmailAsync
(user, email, CancellationToken.None);
Microsoft.Extensions.Identity.Core (2)
UserManager.cs (2)
1534
await store.
SetEmailAsync
(user, email, CancellationToken).ConfigureAwait(false);
1718
await store.
SetEmailAsync
(user, newEmail, CancellationToken).ConfigureAwait(false);