5 implementations of GetPasswordHashAsync
Identity.DefaultUI.WebSite (1)
src\Identity\test\InMemory.Test\InMemoryUserStore.cs (1)
269public Task<string> GetPasswordHashAsync(TUser user, CancellationToken cancellationToken = default(CancellationToken))
Microsoft.AspNetCore.Identity.InMemory.Test (1)
InMemoryUserStore.cs (1)
269public Task<string> GetPasswordHashAsync(TUser user, CancellationToken cancellationToken = default(CancellationToken))
Microsoft.AspNetCore.Identity.Test (2)
UserManagerTest.cs (2)
1357public Task<string> GetPasswordHashAsync(PocoUser user, CancellationToken cancellationToken = default(CancellationToken)) 1633public Task<string> GetPasswordHashAsync(PocoUser user, CancellationToken cancellationToken = default(CancellationToken))
Microsoft.Extensions.Identity.Stores (1)
UserStoreBase.cs (1)
288public virtual Task<string?> GetPasswordHashAsync(TUser user, CancellationToken cancellationToken = default(CancellationToken))
5 references to GetPasswordHashAsync
Microsoft.AspNetCore.Identity.Test (1)
UserManagerTest.cs (1)
575store.Setup(s => s.GetPasswordHashAsync(user, CancellationToken.None))
Microsoft.AspNetCore.Identity.UI (2)
Areas\Identity\Pages\V4\Account\Manage\ExternalLogins.cshtml.cs (1)
100passwordHash = await userPasswordStore.GetPasswordHashAsync(user, HttpContext.RequestAborted);
Areas\Identity\Pages\V5\Account\Manage\ExternalLogins.cshtml.cs (1)
100passwordHash = await userPasswordStore.GetPasswordHashAsync(user, HttpContext.RequestAborted);
Microsoft.Extensions.Identity.Core (2)
UserManager.cs (2)
732var hash = await passwordStore.GetPasswordHashAsync(user, CancellationToken).ConfigureAwait(false); 806var hash = await store.GetPasswordHashAsync(user, CancellationToken).ConfigureAwait(false);