41 writes to SignInScheme
Aspire.Dashboard (1)
DashboardWebApplication.cs (1)
779options.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;
Microsoft.AspNetCore.Authentication.Test (37)
FacebookTests.cs (3)
42o.SignInScheme = "auth1"; 57services => services.AddAuthentication().AddFacebook(o => o.SignInScheme = "PLACEHOLDER"), 265o.SignInScheme = "External";
GoogleTests.cs (1)
42o.SignInScheme = "auth1";
MicrosoftAccountTests.cs (1)
43o.SignInScheme = "auth1";
OAuthTests.cs (10)
47o.SignInScheme = "whatever"; 63o.SignInScheme = "whatever"; 83o.SignInScheme = "eh"; 99o.SignInScheme = "eh"; 115o.SignInScheme = "eh"; 291o.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme; 307opt.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme; 334opt.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme; 369opt.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme; 405opt.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme;
OpenIdConnect\OpenIdConnectConfigurationTests.cs (8)
25o.SignInScheme = "auth1"; 457o.SignInScheme = Guid.NewGuid().ToString(); 475o.SignInScheme = OpenIdConnectDefaults.AuthenticationScheme; 489o.SignInScheme = "TestScheme"; 501o.SignInScheme = "TestScheme"; 515o.SignInScheme = "TestScheme"; 530o.SignInScheme = "TestScheme"; 545o.SignInScheme = "TestScheme";
OpenIdConnect\OpenIdConnectTests.cs (9)
45opt.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme; 72opt.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme; 97opt.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme; 125opt.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme; 150opt.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme; 180opt.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme; 313o.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme; 337o.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme; 360o.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme;
RemoteAuthenticationTests.cs (3)
65o.SignInScheme = DefaultScheme; 78o => o.SignInScheme = null, 93RegisterAuth(builder, o => o.SignInScheme = null);
TwitterTests.cs (2)
41o.SignInScheme = "auth1"; 586o.SignInScheme = "External";
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;