12 references to GetExternalAuthenticationSchemesAsync
Microsoft.AspNetCore.Identity (1)
SignInManager.cs (1)
1114
var providerDisplayName = (await
GetExternalAuthenticationSchemesAsync
()).FirstOrDefault(p => p.Name == provider)?.DisplayName
Microsoft.AspNetCore.Identity.UI (11)
Areas\Identity\Filters\ExternalLoginsPageFilter.cs (1)
19
var schemes = await signInManager.
GetExternalAuthenticationSchemesAsync
();
Areas\Identity\Pages\V4\Account\Login.cshtml.cs (2)
115
ExternalLogins = (await _signInManager.
GetExternalAuthenticationSchemesAsync
()).ToList();
124
ExternalLogins = (await _signInManager.
GetExternalAuthenticationSchemesAsync
()).ToList();
Areas\Identity\Pages\V4\Account\Manage\ExternalLogins.cshtml.cs (1)
93
OtherLogins = (await _signInManager.
GetExternalAuthenticationSchemesAsync
())
Areas\Identity\Pages\V4\Account\Register.cshtml.cs (2)
120
ExternalLogins = (await _signInManager.
GetExternalAuthenticationSchemesAsync
()).ToList();
126
ExternalLogins = (await _signInManager.
GetExternalAuthenticationSchemesAsync
()).ToList();
Areas\Identity\Pages\V5\Account\Login.cshtml.cs (2)
115
ExternalLogins = (await _signInManager.
GetExternalAuthenticationSchemesAsync
()).ToList();
124
ExternalLogins = (await _signInManager.
GetExternalAuthenticationSchemesAsync
()).ToList();
Areas\Identity\Pages\V5\Account\Manage\ExternalLogins.cshtml.cs (1)
93
OtherLogins = (await _signInManager.
GetExternalAuthenticationSchemesAsync
())
Areas\Identity\Pages\V5\Account\Register.cshtml.cs (2)
120
ExternalLogins = (await _signInManager.
GetExternalAuthenticationSchemesAsync
()).ToList();
126
ExternalLogins = (await _signInManager.
GetExternalAuthenticationSchemesAsync
()).ToList();