1 implementation of GetPasswordHashAsync
Microsoft.Extensions.Identity.Stores (1)
UserStoreBase.cs (1)
288public virtual Task<string?> GetPasswordHashAsync(TUser user, CancellationToken cancellationToken = default(CancellationToken))
4 references to GetPasswordHashAsync
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)
853var hash = await passwordStore.GetPasswordHashAsync(user, CancellationToken).ConfigureAwait(false); 952var hash = await store.GetPasswordHashAsync(user, CancellationToken).ConfigureAwait(false);