4 writes to SignInScheme
Aspire.Dashboard (1)
DashboardWebApplication.cs (1)
806options.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme;
Keycloak.Web (1)
Program.cs (1)
41options.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme;
Microsoft.AspNetCore.Authentication (1)
AuthenticationBuilder.cs (1)
124options.SignInScheme ??= _authOptions.DefaultSignInScheme ?? _authOptions.DefaultScheme;
Microsoft.AspNetCore.Authentication.OpenIdConnect (1)
OpenIdConnectConfigureOptions.cs (1)
78options.SignInScheme = configSection[nameof(options.SignInScheme)] ?? options.SignInScheme;
6 references to SignInScheme
Microsoft.AspNetCore.Authentication (2)
RemoteAuthenticationHandler.cs (1)
28protected string? SignInScheme => Options.SignInScheme;
RemoteAuthenticationOptions.cs (1)
41if (string.Equals(scheme, SignInScheme, StringComparison.Ordinal))
Microsoft.AspNetCore.Authentication.OpenIdConnect (3)
OpenIdConnectConfigureOptions.cs (2)
78options.SignInScheme = configSection[nameof(options.SignInScheme)] ?? options.SignInScheme;
OpenIdConnectPostConfigureOptions.cs (1)
42options.SignOutScheme = options.SignInScheme;
Microsoft.AspNetCore.Authentication.WsFederation (1)
WsFederationPostConfigureOptions.cs (1)
42options.SignOutScheme = options.SignInScheme;