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