59 references to GetUserId
IdentitySample.Mvc (1)
Controllers\ManageController.cs (1)
325var properties = _signInManager.ConfigureExternalAuthenticationProperties(provider, redirectUrl, _userManager.GetUserId(User));
Microsoft.AspNetCore.Identity (1)
SignInManager.cs (1)
196var authenticatedUserId = UserManager.GetUserId(auth.Principal);
Microsoft.AspNetCore.Identity.Test (2)
SignInManagerTest.cs (2)
835manager.Setup(m => m.GetUserId(claimsPrincipal)).Returns(user.Id.ToString()); 922manager.Setup(m => m.GetUserId(claimsPrincipal)).Returns("different");
Microsoft.AspNetCore.Identity.UI (54)
Areas\Identity\Pages\V4\Account\Manage\ChangePassword.cshtml.cs (2)
101return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'."); 123return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'.");
Areas\Identity\Pages\V4\Account\Manage\DeletePersonalData.cshtml.cs (2)
80return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'."); 92return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'.");
Areas\Identity\Pages\V4\Account\Manage\Disable2fa.cshtml.cs (2)
55return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'."); 71return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'.");
Areas\Identity\Pages\V4\Account\Manage\DownloadPersonalData.cshtml.cs (1)
55return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'.");
Areas\Identity\Pages\V4\Account\Manage\Email.cshtml.cs (3)
115return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'."); 127return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'."); 162return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'.");
Areas\Identity\Pages\V4\Account\Manage\EnableAuthenticator.cshtml.cs (2)
108return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'."); 121return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'.");
Areas\Identity\Pages\V4\Account\Manage\ExternalLogins.cshtml.cs (4)
89return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'."); 112return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'."); 134var properties = _signInManager.ConfigureExternalAuthenticationProperties(provider, redirectUrl, _userManager.GetUserId(User)); 143return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'.");
Areas\Identity\Pages\V4\Account\Manage\GenerateRecoveryCodes.cshtml.cs (2)
63return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'."); 80return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'.");
Areas\Identity\Pages\V4\Account\Manage\Index.cshtml.cs (2)
96return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'."); 108return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'.");
Areas\Identity\Pages\V4\Account\Manage\PersonalData.cshtml.cs (1)
42return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'.");
Areas\Identity\Pages\V4\Account\Manage\ResetAuthenticator.cshtml.cs (2)
58return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'."); 69return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'.");
Areas\Identity\Pages\V4\Account\Manage\SetPassword.cshtml.cs (2)
88return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'."); 111return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'.");
Areas\Identity\Pages\V4\Account\Manage\TwoFactorAuthentication.cshtml.cs (2)
81return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'."); 97return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'.");
Areas\Identity\Pages\V5\Account\Manage\ChangePassword.cshtml.cs (2)
101return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'."); 123return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'.");
Areas\Identity\Pages\V5\Account\Manage\DeletePersonalData.cshtml.cs (2)
80return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'."); 92return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'.");
Areas\Identity\Pages\V5\Account\Manage\Disable2fa.cshtml.cs (2)
55return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'."); 71return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'.");
Areas\Identity\Pages\V5\Account\Manage\DownloadPersonalData.cshtml.cs (1)
55return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'.");
Areas\Identity\Pages\V5\Account\Manage\Email.cshtml.cs (3)
115return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'."); 127return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'."); 162return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'.");
Areas\Identity\Pages\V5\Account\Manage\EnableAuthenticator.cshtml.cs (2)
108return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'."); 121return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'.");
Areas\Identity\Pages\V5\Account\Manage\ExternalLogins.cshtml.cs (4)
89return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'."); 112return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'."); 134var properties = _signInManager.ConfigureExternalAuthenticationProperties(provider, redirectUrl, _userManager.GetUserId(User)); 143return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'.");
Areas\Identity\Pages\V5\Account\Manage\GenerateRecoveryCodes.cshtml.cs (2)
63return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'."); 80return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'.");
Areas\Identity\Pages\V5\Account\Manage\Index.cshtml.cs (2)
96return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'."); 108return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'.");
Areas\Identity\Pages\V5\Account\Manage\PersonalData.cshtml.cs (1)
42return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'.");
Areas\Identity\Pages\V5\Account\Manage\ResetAuthenticator.cshtml.cs (2)
58return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'."); 69return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'.");
Areas\Identity\Pages\V5\Account\Manage\SetPassword.cshtml.cs (2)
88return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'."); 111return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'.");
Areas\Identity\Pages\V5\Account\Manage\TwoFactorAuthentication.cshtml.cs (2)
81return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'."); 97return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'.");
Microsoft.Extensions.Identity.Core (1)
UserManager.cs (1)
457var id = GetUserId(principal);