35 references to GetUserIdAsync
Microsoft.AspNetCore.Identity (5)
DataProtectorTokenProvider.cs (2)
80
var userId = await manager.
GetUserIdAsync
(user);
125
var actualUserId = await manager.
GetUserIdAsync
(user);
SignInManager.cs (3)
403
var userId = await UserManager.
GetUserIdAsync
(user);
733
var userId = await UserManager.
GetUserIdAsync
(user);
772
var userId = await UserManager.
GetUserIdAsync
(user);
Microsoft.AspNetCore.Identity.UI (24)
Areas\Identity\Pages\V4\Account\ExternalLogin.cshtml.cs (1)
194
var userId = await _userManager.
GetUserIdAsync
(user);
Areas\Identity\Pages\V4\Account\LoginWith2fa.cshtml.cs (1)
128
await _userManager.
GetUserIdAsync
(user);
Areas\Identity\Pages\V4\Account\LoginWithRecoveryCode.cshtml.cs (1)
111
await _userManager.
GetUserIdAsync
(user);
Areas\Identity\Pages\V4\Account\Manage\DeletePersonalData.cshtml.cs (1)
106
await _userManager.
GetUserIdAsync
(user);
Areas\Identity\Pages\V4\Account\Manage\Email.cshtml.cs (2)
140
var userId = await _userManager.
GetUserIdAsync
(user);
175
var userId = await _userManager.
GetUserIdAsync
(user);
Areas\Identity\Pages\V4\Account\Manage\EnableAuthenticator.cshtml.cs (1)
144
await _userManager.
GetUserIdAsync
(user);
Areas\Identity\Pages\V4\Account\Manage\ExternalLogins.cshtml.cs (1)
146
var userId = await _userManager.
GetUserIdAsync
(user);
Areas\Identity\Pages\V4\Account\Manage\ResetAuthenticator.cshtml.cs (1)
74
await _userManager.
GetUserIdAsync
(user);
Areas\Identity\Pages\V4\Account\Register.cshtml.cs (1)
140
var userId = await _userManager.
GetUserIdAsync
(user);
Areas\Identity\Pages\V4\Account\RegisterConfirmation.cshtml.cs (1)
76
var userId = await _userManager.
GetUserIdAsync
(user);
Areas\Identity\Pages\V4\Account\ResendEmailConfirmation.cshtml.cs (1)
87
var userId = await _userManager.
GetUserIdAsync
(user);
Areas\Identity\Pages\V5\Account\ExternalLogin.cshtml.cs (1)
194
var userId = await _userManager.
GetUserIdAsync
(user);
Areas\Identity\Pages\V5\Account\LoginWith2fa.cshtml.cs (1)
128
await _userManager.
GetUserIdAsync
(user);
Areas\Identity\Pages\V5\Account\LoginWithRecoveryCode.cshtml.cs (1)
111
await _userManager.
GetUserIdAsync
(user);
Areas\Identity\Pages\V5\Account\Manage\DeletePersonalData.cshtml.cs (1)
106
await _userManager.
GetUserIdAsync
(user);
Areas\Identity\Pages\V5\Account\Manage\Email.cshtml.cs (2)
140
var userId = await _userManager.
GetUserIdAsync
(user);
175
var userId = await _userManager.
GetUserIdAsync
(user);
Areas\Identity\Pages\V5\Account\Manage\EnableAuthenticator.cshtml.cs (1)
144
await _userManager.
GetUserIdAsync
(user);
Areas\Identity\Pages\V5\Account\Manage\ExternalLogins.cshtml.cs (1)
146
var userId = await _userManager.
GetUserIdAsync
(user);
Areas\Identity\Pages\V5\Account\Manage\ResetAuthenticator.cshtml.cs (1)
74
await _userManager.
GetUserIdAsync
(user);
Areas\Identity\Pages\V5\Account\Register.cshtml.cs (1)
140
var userId = await _userManager.
GetUserIdAsync
(user);
Areas\Identity\Pages\V5\Account\RegisterConfirmation.cshtml.cs (1)
76
var userId = await _userManager.
GetUserIdAsync
(user);
Areas\Identity\Pages\V5\Account\ResendEmailConfirmation.cshtml.cs (1)
87
var userId = await _userManager.
GetUserIdAsync
(user);
Microsoft.Extensions.Identity.Core (6)
TotpSecurityStampBasedTokenProvider.cs (1)
86
var userId = await manager.
GetUserIdAsync
(user).ConfigureAwait(false);
UserClaimsPrincipalFactory.cs (1)
72
var userId = await UserManager.
GetUserIdAsync
(user).ConfigureAwait(false);
UserValidator.cs (4)
71
!string.Equals(await manager.
GetUserIdAsync
(owner).ConfigureAwait(false), await manager.
GetUserIdAsync
(user).ConfigureAwait(false)))
99
!string.Equals(await manager.
GetUserIdAsync
(owner).ConfigureAwait(false), await manager.
GetUserIdAsync
(user).ConfigureAwait(false)))