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 136public HttpAuthenticationHardeningLevel HttpAuthenticationHardeningLevel { get; set; } = HttpAuthenticationHardeningLevel.Medium;
NativeInterop\UrlGroup.cs (6)
50internal unsafe void SetChannelBindingProperty(HttpAuthenticationHardeningLevel level) 56HttpAuthenticationHardeningLevel.Strict => HTTP_AUTHENTICATION_HARDENING_LEVELS.HttpAuthenticationHardeningStrict, 57HttpAuthenticationHardeningLevel.Legacy => HTTP_AUTHENTICATION_HARDENING_LEVELS.HttpAuthenticationHardeningLegacy, 58HttpAuthenticationHardeningLevel.Medium or _ => HTTP_AUTHENTICATION_HARDENING_LEVELS.HttpAuthenticationHardeningMedium, 64Flags = level == HttpAuthenticationHardeningLevel.Legacy 73throwOnError: level == HttpAuthenticationHardeningLevel.Strict);
RequestProcessing\RequestContext.FeatureCollection.cs (1)
407if (Server.Options.HttpAuthenticationHardeningLevel == HttpAuthenticationHardeningLevel.Legacy)