1 write to _userManager
Microsoft.AspNetCore.Identity.UI (1)
Areas\Identity\Pages\V5\Account\Manage\ResetAuthenticator.cshtml.cs (1)
48_userManager = userManager;
7 references to _userManager
Microsoft.AspNetCore.Identity.UI (7)
Areas\Identity\Pages\V5\Account\Manage\ResetAuthenticator.cshtml.cs (7)
55var user = await _userManager.GetUserAsync(User); 58return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'."); 66var user = await _userManager.GetUserAsync(User); 69return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'."); 72await _userManager.SetTwoFactorEnabledAsync(user, false); 73await _userManager.ResetAuthenticatorKeyAsync(user); 74await _userManager.GetUserIdAsync(user);