Closed
Description
Background and Motivation
Additional configuration option for http.sys : #47776
Proposed API
namespace Microsoft.AspNetCore.Server.HttpSys;
public class HttpSysOptions
{
+ public bool EnableKernelResponseBuffering { get; set; }
}
Usage Examples
builder.UseHttpSys(options =>
{
options.EnableKernelResponseBuffering = true;
});
Alternative Designs
for back-port and compat; app-context switch that also impacts initial value
Risks
None; no change if not used; no overload resolution issues.