8 references to ConfigureExternalAuthenticationProperties
Identity.ExternalClaims (2)
Pages\Account\ExternalLogin.cshtml.cs (1)
59var properties = _signInManager.ConfigureExternalAuthenticationProperties(provider, redirectUrl);
Pages\Account\Manage\ExternalLogins.cshtml.cs (1)
80var properties = _signInManager.ConfigureExternalAuthenticationProperties(provider, redirectUrl, _userManager.GetUserId(User));
IdentitySample.Mvc (2)
Controllers\AccountController.cs (1)
147var properties = _signInManager.ConfigureExternalAuthenticationProperties(provider, redirectUrl);
Controllers\ManageController.cs (1)
325var properties = _signInManager.ConfigureExternalAuthenticationProperties(provider, redirectUrl, _userManager.GetUserId(User));
Microsoft.AspNetCore.Identity.UI (4)
Areas\Identity\Pages\V4\Account\ExternalLogin.cshtml.cs (1)
121var properties = _signInManager.ConfigureExternalAuthenticationProperties(provider, redirectUrl);
Areas\Identity\Pages\V4\Account\Manage\ExternalLogins.cshtml.cs (1)
134var properties = _signInManager.ConfigureExternalAuthenticationProperties(provider, redirectUrl, _userManager.GetUserId(User));
Areas\Identity\Pages\V5\Account\ExternalLogin.cshtml.cs (1)
121var properties = _signInManager.ConfigureExternalAuthenticationProperties(provider, redirectUrl);
Areas\Identity\Pages\V5\Account\Manage\ExternalLogins.cshtml.cs (1)
134var properties = _signInManager.ConfigureExternalAuthenticationProperties(provider, redirectUrl, _userManager.GetUserId(User));