40 writes to SignInScheme
Aspire.Dashboard (1)
DashboardWebApplication.cs (1)
582options.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"; 50services => services.AddAuthentication().AddFacebook(o => o.SignInScheme = "PLACEHOLDER"), 258o.SignInScheme = "External";
GoogleTests.cs (1)
42o.SignInScheme = "auth1";
MicrosoftAccountTests.cs (1)
43o.SignInScheme = "auth1";
OAuthTests.cs (10)
40o.SignInScheme = "whatever"; 56o.SignInScheme = "whatever"; 76o.SignInScheme = "eh"; 92o.SignInScheme = "eh"; 108o.SignInScheme = "eh"; 284o.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme; 300opt.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme; 327opt.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme; 362opt.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme; 398opt.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)
38opt.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme; 65opt.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme; 90opt.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme; 118opt.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme; 143opt.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme; 173opt.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme; 306o.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme; 330o.SignInScheme = CookieAuthenticationDefaults.AuthenticationScheme; 353o.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"; 579o.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;