This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Note
Access to this page requires authorization. You can trysigning in orchanging directories.
Access to this page requires authorization. You can trychanging directories.
Property | Value |
---|---|
Rule ID | CA2262 |
Title | SetMaxResponseHeadersLength properly |
Category | Usage |
Fix is breaking or non-breaking | Non-breaking |
Enabled by default in .NET 9 | As suggestion |
TheHttpClientHandler.MaxResponseHeadersLength property is set to a value greater than 128.
TheHttpClientHandler.MaxResponseHeadersLength property is measured in kilobytes, not bytes. The default maximum length is 64 KB, which should be large enough for a majority of use cases. If you set the property to a value greater than 128 kilobytes, it might be due to a misunderstanding of the units of this property.
If you intended to set a smaller value, update it to the desired value measured in kilobytes.
HttpClientHandler handler = new(){ // Violation MaxResponseHeadersLength = 512 // Fix (it is not possible to specify a limit lower than 1 KB) MaxResponseHeadersLength = 1};
Dim handler As New HttpClientHandler With { ' Violation .MaxResponseHeadersLength = 512 ' Fix (it is not possible to specify a limit lower than 1 KB) .MaxResponseHeadersLength = 1}
It's safe to suppress this warning if the large value is intended.
Was this page helpful?
Was this page helpful?