3 references to ResetPasswordAsync
Microsoft.AspNetCore.Identity (1)
IdentityApiEndpointRouteBuilderExtensions.cs (1)
243
result = await userManager.
ResetPasswordAsync
(user, code, resetRequest.NewPassword);
Microsoft.AspNetCore.Identity.UI (2)
Areas\Identity\Pages\V4\Account\ResetPassword.cshtml.cs (1)
120
var result = await _userManager.
ResetPasswordAsync
(user, Input.Code, Input.Password);
Areas\Identity\Pages\V5\Account\ResetPassword.cshtml.cs (1)
120
var result = await _userManager.
ResetPasswordAsync
(user, Input.Code, Input.Password);