question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

API http.sys: EnableKernelResponseBuffering

See original GitHub issue

Background 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:closed
  • Created 5 months ago
  • Comments:13 (12 by maintainers)

github_iconTop GitHub Comments

1reaction
Tratchercommented, Apr 26, 2023

Don’t overcomplicate it. The current proposal fulfils the requirements. The feature could be added later if needed. :shipit:

0reactions
BrennanConroycommented, May 12, 2023

Usually issues are closed when the PR is merged.

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found