5 implementations of SetEmailAsync
Identity.DefaultUI.WebSite (1)
src\Identity\test\InMemory.Test\InMemoryUserStore.cs (1)
74public Task SetEmailAsync(TUser user, string email, CancellationToken cancellationToken = default(CancellationToken))
Microsoft.AspNetCore.Identity.InMemory.Test (1)
InMemoryUserStore.cs (1)
74public Task SetEmailAsync(TUser user, string email, CancellationToken cancellationToken = default(CancellationToken))
Microsoft.AspNetCore.Identity.Test (2)
UserManagerTest.cs (2)
1238public Task SetEmailAsync(PocoUser user, string email, CancellationToken cancellationToken = default(CancellationToken)) 1518public Task SetEmailAsync(PocoUser user, string email, CancellationToken cancellationToken = default(CancellationToken))
Microsoft.Extensions.Identity.Stores (1)
UserStoreBase.cs (1)
480public virtual Task SetEmailAsync(TUser user, string? email, CancellationToken cancellationToken = default(CancellationToken))
7 references to SetEmailAsync
Microsoft.AspNetCore.Identity (1)
IdentityApiEndpointRouteBuilderExtensions.cs (1)
78await emailStore.SetEmailAsync(user, email, CancellationToken.None);
Microsoft.AspNetCore.Identity.UI (4)
Areas\Identity\Pages\V4\Account\ExternalLogin.cshtml.cs (1)
186await _emailStore.SetEmailAsync(user, Input.Email, CancellationToken.None);
Areas\Identity\Pages\V4\Account\Register.cshtml.cs (1)
132await _emailStore.SetEmailAsync(user, Input.Email, CancellationToken.None);
Areas\Identity\Pages\V5\Account\ExternalLogin.cshtml.cs (1)
186await _emailStore.SetEmailAsync(user, Input.Email, CancellationToken.None);
Areas\Identity\Pages\V5\Account\Register.cshtml.cs (1)
132await _emailStore.SetEmailAsync(user, Input.Email, CancellationToken.None);
Microsoft.Extensions.Identity.Core (2)
UserManager.cs (2)
1271await store.SetEmailAsync(user, email, CancellationToken).ConfigureAwait(false); 1419await store.SetEmailAsync(user, newEmail, CancellationToken).ConfigureAwait(false);