6 references to SignInAsync
Microsoft.AspNetCore.Identity (2)
SignInManager.cs (2)
176
/// If the user is not signed in, use <see cref="
SignInAsync
(TUser, bool, string?)"/> instead.
1275
await
SignInAsync
(user, isPersistent, loginProvider);
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);