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)
57
var user = await
_userManager
.GetUserAsync(User);
60
throw new ApplicationException($"Unable to load user with ID '{
_userManager
.GetUserId(User)}'.");
71
IsEmailConfirmed = await
_userManager
.IsEmailConfirmedAsync(user);
83
var user = await
_userManager
.GetUserAsync(User);
86
throw new ApplicationException($"Unable to load user with ID '{
_userManager
.GetUserId(User)}'.");
91
var setEmailResult = await
_userManager
.SetEmailAsync(user, Input.Email);
100
var setPhoneResult = await
_userManager
.SetPhoneNumberAsync(user, Input.PhoneNumber);
117
var user = await
_userManager
.GetUserAsync(User);
120
throw new ApplicationException($"Unable to load user with ID '{
_userManager
.GetUserId(User)}'.");
123
var code = await
_userManager
.GenerateEmailConfirmationTokenAsync(user);