13 references to HttpAuthenticationHardeningLevel
Microsoft.AspNetCore.Server.HttpSys (13)
HttpSysOptions.cs (6)
124
/// Configures the Http.Sys authentication hardening level. Non-<see cref="
HttpAuthenticationHardeningLevel
.Legacy"/>
128
/// The default is <see cref="
HttpAuthenticationHardeningLevel
.Medium"/>.
131
/// Setting this to <see cref="
HttpAuthenticationHardeningLevel
.Medium"/> or
132
/// <see cref="
HttpAuthenticationHardeningLevel
.Strict"/> both raises the hardening
136
public
HttpAuthenticationHardeningLevel
HttpAuthenticationHardeningLevel { get; set; } =
HttpAuthenticationHardeningLevel
.Medium;
NativeInterop\UrlGroup.cs (6)
50
internal unsafe void SetChannelBindingProperty(
HttpAuthenticationHardeningLevel
level)
56
HttpAuthenticationHardeningLevel
.Strict => HTTP_AUTHENTICATION_HARDENING_LEVELS.HttpAuthenticationHardeningStrict,
57
HttpAuthenticationHardeningLevel
.Legacy => HTTP_AUTHENTICATION_HARDENING_LEVELS.HttpAuthenticationHardeningLegacy,
58
HttpAuthenticationHardeningLevel
.Medium or _ => HTTP_AUTHENTICATION_HARDENING_LEVELS.HttpAuthenticationHardeningMedium,
64
Flags = level ==
HttpAuthenticationHardeningLevel
.Legacy
73
throwOnError: level ==
HttpAuthenticationHardeningLevel
.Strict);
RequestProcessing\RequestContext.FeatureCollection.cs (1)
407
if (Server.Options.HttpAuthenticationHardeningLevel ==
HttpAuthenticationHardeningLevel
.Legacy)