API http.sys: EnableKernelResponseBuffering
See original GitHub issueBackground and Motivation
Additional configuration option for http.sys : https://github.com/dotnet/aspnetcore/pull/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.
Issue Analytics
- State:
- Created 5 months ago
- Comments:13 (12 by maintainers)
Top Results From Across the Web
HTTP.sys web server implementation in ASP.NET Core
HTTP.sys is a web server for ASP.NET Core that only runs on Windows. HTTP.sys is an alternative to Kestrel server and offers some...
Read more >.NET 8 Preview 6 Bolsters New Blazor Rendering ...
"You can now enable kernel-based response buffering when using HTTP.sys using the EnableKernelResponseBuffering option," Roth said. "This option ...
Read more >Problems with ASP.NET Core site using http.sys and ...
I'll address them each individually. When configuring http.sys, a warning is issued about overriding local URLs. The UseHttpSys extension method ...
Read more >Http.sys Delegation
Http.sys delegation is a kernel level feature added into newer versions of Windows which allows a request to be transferred from the receiving...
Read more >Demystify http.sys with HttpSysManager
This driver is meant to listen http traffic and dispatch based on the URL to processes : now multiple processes will be able...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Don’t overcomplicate it. The current proposal fulfils the requirements. The feature could be added later if needed. :shipit:
Usually issues are closed when the PR is merged.