1 write to DefaultChallengeScheme
Microsoft.AspNetCore.Identity (1)
IdentityServiceCollectionExtensions.cs (1)
56options.DefaultChallengeScheme = IdentityConstants.ApplicationScheme;
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)