1 write to _userManager
Microsoft.AspNetCore.Identity.UI (1)
Areas\Identity\Pages\V5\Account\ForgotPassword.cshtml.cs (1)
58
_userManager
= userManager;
3 references to _userManager
Microsoft.AspNetCore.Identity.UI (3)
Areas\Identity\Pages\V5\Account\ForgotPassword.cshtml.cs (3)
66
var user = await
_userManager
.FindByEmailAsync(Input.Email);
67
if (user == null || !(await
_userManager
.IsEmailConfirmedAsync(user)))
75
var code = await
_userManager
.GeneratePasswordResetTokenAsync(user);