1 implementation of GetPasswordHashAsync
Microsoft.Extensions.Identity.Stores (1)
UserStoreBase.cs (1)
288
public 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)
100
passwordHash = await userPasswordStore.
GetPasswordHashAsync
(user, HttpContext.RequestAborted);
Areas\Identity\Pages\V5\Account\Manage\ExternalLogins.cshtml.cs (1)
100
passwordHash = await userPasswordStore.
GetPasswordHashAsync
(user, HttpContext.RequestAborted);
Microsoft.Extensions.Identity.Core (2)
UserManager.cs (2)
853
var hash = await passwordStore.
GetPasswordHashAsync
(user, CancellationToken).ConfigureAwait(false);
952
var hash = await store.
GetPasswordHashAsync
(user, CancellationToken).ConfigureAwait(false);