1 write to _userManager
Identity.ExternalClaims (1)
Pages\Account\Manage\Index.cshtml.cs (1)
29_userManager = userManager;
10 references to _userManager
Identity.ExternalClaims (10)
Pages\Account\Manage\Index.cshtml.cs (10)
57var user = await _userManager.GetUserAsync(User); 60throw new ApplicationException($"Unable to load user with ID '{_userManager.GetUserId(User)}'."); 71IsEmailConfirmed = await _userManager.IsEmailConfirmedAsync(user); 83var user = await _userManager.GetUserAsync(User); 86throw new ApplicationException($"Unable to load user with ID '{_userManager.GetUserId(User)}'."); 91var setEmailResult = await _userManager.SetEmailAsync(user, Input.Email); 100var setPhoneResult = await _userManager.SetPhoneNumberAsync(user, Input.PhoneNumber); 117var user = await _userManager.GetUserAsync(User); 120throw new ApplicationException($"Unable to load user with ID '{_userManager.GetUserId(User)}'."); 123var code = await _userManager.GenerateEmailConfirmationTokenAsync(user);