21 references to SignInAsync
Identity.ExternalClaims (4)
Pages\Account\Manage\ChangePassword.cshtml.cs (1)
98
await _signInManager.
SignInAsync
(user, isPersistent: false);
Pages\Account\Manage\ExternalLogins.cshtml.cs (1)
68
await _signInManager.
SignInAsync
(user, isPersistent: false);
Pages\Account\Manage\SetPassword.cshtml.cs (1)
90
await _signInManager.
SignInAsync
(user, isPersistent: false);
Pages\Account\Register.cshtml.cs (1)
81
await _signInManager.
SignInAsync
(user, isPersistent: false);
IdentitySample.DefaultUI (1)
Areas\Identity\Pages\Account\Register.cshtml.cs (1)
110
await _signInManager.
SignInAsync
(user, isPersistent: false);
IdentitySample.Mvc (9)
Controllers\AccountController.cs (2)
116
await _signInManager.
SignInAsync
(user, isPersistent: false);
218
await _signInManager.
SignInAsync
(user, isPersistent: false);
Controllers\ManageController.cs (7)
76
await _signInManager.
SignInAsync
(user, isPersistent: false);
148
await _signInManager.
SignInAsync
(user, isPersistent: false);
164
await _signInManager.
SignInAsync
(user, isPersistent: false);
196
await _signInManager.
SignInAsync
(user, isPersistent: false);
217
await _signInManager.
SignInAsync
(user, isPersistent: false);
248
await _signInManager.
SignInAsync
(user, isPersistent: false);
283
await _signInManager.
SignInAsync
(user, isPersistent: false);
Microsoft.AspNetCore.Identity (1)
SignInManager.cs (1)
854
await
SignInAsync
(user, isPersistent, loginProvider);
Microsoft.AspNetCore.Identity.Test (2)
SecurityStampValidatorTest.cs (2)
251
signInManager.Setup(s => s.
SignInAsync
(user, false, null)).Throws(new Exception("Shouldn't be called"));
289
signInManager.Setup(s => s.
SignInAsync
(user, false, null)).Throws(new Exception("Shouldn't be called"));
Microsoft.AspNetCore.Identity.UI (4)
Areas\Identity\Pages\V4\Account\ExternalLogin.cshtml.cs (1)
216
await _signInManager.
SignInAsync
(user, isPersistent: false, info.LoginProvider);
Areas\Identity\Pages\V4\Account\Register.cshtml.cs (1)
156
await _signInManager.
SignInAsync
(user, isPersistent: false);
Areas\Identity\Pages\V5\Account\ExternalLogin.cshtml.cs (1)
216
await _signInManager.
SignInAsync
(user, isPersistent: false, info.LoginProvider);
Areas\Identity\Pages\V5\Account\Register.cshtml.cs (1)
156
await _signInManager.
SignInAsync
(user, isPersistent: false);