18 writes to DefaultSignInScheme
IdentitySample.Mvc (1)
Startup.cs (1)
46o.DefaultSignInScheme = IdentityConstants.ExternalScheme;
IdentitySample.PasskeyConformance (1)
Program.cs (1)
18options.DefaultSignInScheme = IdentityConstants.ExternalScheme;
IdentitySample.PasskeyUI (1)
Program.cs (1)
18options.DefaultSignInScheme = IdentityConstants.ExternalScheme;
Microsoft.AspNetCore.Authentication.Core.Test (3)
AuthenticationSchemeProviderTests.cs (3)
81o.DefaultSignInScheme = "signin"; 118o.DefaultSignInScheme = "C"; 137o.DefaultSignInScheme = "signin";
Microsoft.AspNetCore.Authentication.Test (9)
AuthenticationMetricsTest.cs (1)
342DefaultSignInScheme = "custom",
FacebookTests.cs (1)
290options.DefaultSignInScheme = "External";
RemoteAuthenticationTests.cs (1)
92var builder = services.AddAuthentication(o => o.DefaultSignInScheme = DefaultScheme);
WsFederation\WsFederationTest.cs (3)
59sharedOptions.DefaultSignInScheme = CookieAuthenticationDefaults.AuthenticationScheme; 219sharedOptions.DefaultSignInScheme = CookieAuthenticationDefaults.AuthenticationScheme; 292sharedOptions.DefaultSignInScheme = CookieAuthenticationDefaults.AuthenticationScheme;
WsFederation\WsFederationTest_Handler.cs (3)
50sharedOptions.DefaultSignInScheme = CookieAuthenticationDefaults.AuthenticationScheme; 210sharedOptions.DefaultSignInScheme = CookieAuthenticationDefaults.AuthenticationScheme; 283sharedOptions.DefaultSignInScheme = CookieAuthenticationDefaults.AuthenticationScheme;
Microsoft.AspNetCore.Identity (1)
IdentityServiceCollectionExtensions.cs (1)
57options.DefaultSignInScheme = IdentityConstants.ExternalScheme;
Microsoft.AspNetCore.Identity.UI (1)
IdentityServiceCollectionUIExtensions.cs (1)
44o.DefaultSignInScheme = IdentityConstants.ExternalScheme;
WsFedSample (1)
Startup.cs (1)
26sharedOptions.DefaultSignInScheme = CookieAuthenticationDefaults.AuthenticationScheme;
8 references to DefaultSignInScheme
Microsoft.AspNetCore.Authentication (2)
AuthenticationBuilder.cs (1)
124options.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)