2 writes to DefaultScheme
Aspire.Dashboard (1)
DashboardWebApplication.cs (1)
724.AddAuthentication(o => o.DefaultScheme = ConfigureDefaultAuthScheme(dashboardOptions))
Microsoft.AspNetCore.Authentication (1)
AuthenticationServiceCollectionExtensions.cs (1)
43=> services.AddAuthentication(o => o.DefaultScheme = defaultScheme);
9 references to DefaultScheme
Microsoft.AspNetCore.Authentication (1)
AuthenticationBuilder.cs (1)
124options.SignInScheme ??= _authOptions.DefaultSignInScheme ?? _authOptions.DefaultScheme;
Microsoft.AspNetCore.Authentication.Abstractions (3)
IAuthenticationSchemeProvider.cs (3)
29/// Otherwise, this will fallback to <see cref="AuthenticationOptions.DefaultScheme"/>. 37/// Otherwise, this will fallback to <see cref="AuthenticationOptions.DefaultScheme"/>. 53/// Otherwise, this will fallback to <see cref="AuthenticationOptions.DefaultScheme"/>.
Microsoft.AspNetCore.Authentication.Core (5)
AuthenticationSchemeProvider.cs (5)
58=> _options.DefaultScheme != null 59? GetSchemeAsync(_options.DefaultScheme) 65/// Otherwise, this will fallback to <see cref="AuthenticationOptions.DefaultScheme"/>. 76/// Otherwise, this will fallback to <see cref="AuthenticationOptions.DefaultScheme"/>. 98/// Otherwise, this will fallback to <see cref="AuthenticationOptions.DefaultScheme"/>.