16 writes to DefaultChallengeScheme
CookieSessionSample (1)
Startup.cs (1)
18options.DefaultChallengeScheme = CookieAuthenticationDefaults.AuthenticationScheme;
Microsoft.AspNetCore.Authentication.Core.Test (2)
AuthenticationSchemeProviderTests.cs (2)
97o.DefaultChallengeScheme = "challenge"; 116o.DefaultChallengeScheme = "A";
Microsoft.AspNetCore.Authentication.Test (8)
OpenIdConnect\OpenIdConnectEventTests.cs (1)
1274auth.DefaultChallengeScheme = OpenIdConnectDefaults.AuthenticationScheme;
OpenIdConnect\OpenIdConnectEventTests_Handler.cs (1)
1274auth.DefaultChallengeScheme = OpenIdConnectDefaults.AuthenticationScheme;
WsFederation\WsFederationTest.cs (3)
53sharedOptions.DefaultChallengeScheme = WsFederationDefaults.AuthenticationScheme; 213sharedOptions.DefaultChallengeScheme = WsFederationDefaults.AuthenticationScheme; 286sharedOptions.DefaultChallengeScheme = WsFederationDefaults.AuthenticationScheme;
WsFederation\WsFederationTest_Handler.cs (3)
51sharedOptions.DefaultChallengeScheme = WsFederationDefaults.AuthenticationScheme; 211sharedOptions.DefaultChallengeScheme = WsFederationDefaults.AuthenticationScheme; 284sharedOptions.DefaultChallengeScheme = WsFederationDefaults.AuthenticationScheme;
Microsoft.AspNetCore.Http.Connections.Tests (1)
HttpConnectionDispatcherTests.cs (1)
3202options.DefaultChallengeScheme = JwtBearerDefaults.AuthenticationScheme;
Microsoft.AspNetCore.Identity (1)
IdentityServiceCollectionExtensions.cs (1)
56options.DefaultChallengeScheme = IdentityConstants.ApplicationScheme;
Microsoft.AspNetCore.SignalR.Tests (1)
Startup.cs (1)
38options.DefaultChallengeScheme = JwtBearerDefaults.AuthenticationScheme;
OpenIdConnectSample (1)
Startup.cs (1)
96sharedOptions.DefaultChallengeScheme = OpenIdConnectDefaults.AuthenticationScheme;
WsFedSample (1)
Startup.cs (1)
27sharedOptions.DefaultChallengeScheme = WsFederationDefaults.AuthenticationScheme;
6 references to DefaultChallengeScheme
Microsoft.AspNetCore.Authentication.Abstractions (3)
AuthenticationHttpContextExtensions.cs (2)
47/// The default challenge scheme can be configured using <see cref="AuthenticationOptions.DefaultChallengeScheme"/>. 57/// The default challenge scheme can be configured using <see cref="AuthenticationOptions.DefaultChallengeScheme"/>.
IAuthenticationSchemeProvider.cs (1)
36/// This is typically specified via <see cref="AuthenticationOptions.DefaultChallengeScheme"/>.
Microsoft.AspNetCore.Authentication.Core (3)
AuthenticationSchemeProvider.cs (3)
75/// This is typically specified via <see cref="AuthenticationOptions.DefaultChallengeScheme"/>. 80=> _options.DefaultChallengeScheme != null 81? GetSchemeAsync(_options.DefaultChallengeScheme)