1 write to DefaultSignInScheme
Microsoft.AspNetCore.Identity (1)
IdentityServiceCollectionExtensions.cs (1)
57
options.
DefaultSignInScheme
= IdentityConstants.ExternalScheme;
8 references to DefaultSignInScheme
Microsoft.AspNetCore.Authentication (2)
AuthenticationBuilder.cs (1)
124
options.SignInScheme ??= _authOptions.
DefaultSignInScheme
?? _authOptions.DefaultScheme;
RemoteAuthenticationOptions.cs (1)
110
/// When omitted, <see cref="AuthenticationOptions.
DefaultSignInScheme
"/> is used as a fallback value.
Microsoft.AspNetCore.Authentication.Abstractions (3)
AuthenticationHttpContextExtensions.cs (2)
130
/// The default scheme for signing in can be configured using <see cref="AuthenticationOptions.
DefaultSignInScheme
"/>.
140
/// The default scheme for signing in can be configured using <see cref="AuthenticationOptions.
DefaultSignInScheme
"/>.
IAuthenticationSchemeProvider.cs (1)
52
/// This is typically specified via <see cref="AuthenticationOptions.
DefaultSignInScheme
"/>.
Microsoft.AspNetCore.Authentication.Core (3)
AuthenticationSchemeProvider.cs (3)
97
/// This is typically specified via <see cref="AuthenticationOptions.
DefaultSignInScheme
"/>.
102
=> _options.
DefaultSignInScheme
!= null
103
? GetSchemeAsync(_options.
DefaultSignInScheme
)