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