5 writes to DefaultAuthenticateScheme
CookieSessionSample (1)
Startup.cs (1)
17options.DefaultAuthenticateScheme = CookieAuthenticationDefaults.AuthenticationScheme;
Microsoft.AspNetCore.Authentication.Core.Test (1)
AuthenticationSchemeProviderTests.cs (1)
120o.DefaultAuthenticateScheme = "C";
Microsoft.AspNetCore.Http.Connections.Tests (1)
HttpConnectionDispatcherTests.cs (1)
3201options.DefaultAuthenticateScheme = JwtBearerDefaults.AuthenticationScheme;
Microsoft.AspNetCore.Identity (1)
IdentityServiceCollectionExtensions.cs (1)
55options.DefaultAuthenticateScheme = IdentityConstants.ApplicationScheme;
Microsoft.AspNetCore.SignalR.Tests (1)
Startup.cs (1)
37options.DefaultAuthenticateScheme = JwtBearerDefaults.AuthenticationScheme;
6 references to DefaultAuthenticateScheme
Microsoft.AspNetCore.Authentication.Abstractions (3)
AuthenticationHttpContextExtensions.cs (2)
18/// The default authentication scheme can be configured using <see cref="AuthenticationOptions.DefaultAuthenticateScheme"/>. 207/// The default authentication scheme can be configured using <see cref="AuthenticationOptions.DefaultAuthenticateScheme"/>.
IAuthenticationSchemeProvider.cs (1)
28/// This is typically specified via <see cref="AuthenticationOptions.DefaultAuthenticateScheme"/>.
Microsoft.AspNetCore.Authentication.Core (3)
AuthenticationSchemeProvider.cs (3)
64/// This is typically specified via <see cref="AuthenticationOptions.DefaultAuthenticateScheme"/>. 69=> _options.DefaultAuthenticateScheme != null 70? GetSchemeAsync(_options.DefaultAuthenticateScheme)