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