[Epic] ASP.NET Core ❤️ Debugging · Issue #48205 · dotnet/aspnetcore (original) (raw)

This issue has evolved into an epic for making debugging better across ASP.NET Core

There are two primary areas we want to hit:

Debugging HTTP requests. This means HttpContext and friends are easily debuggable.

Debugging hosting. Give feedback about whether a host is running, its name, and its environment (i.e. Production vs Development).

Debugging application startup. I think there is a lot that could be done here. ASP.NET Core has a lot of configuration settings, and we should figure out where to focus energy to provide the best value.

Debugging connections. This would be the ConnectionContext that is available in connection middleware and Kestrel transports. Lesser used area.


Is there an existing issue for this?

It's very common to debug HTTP requests in an ASP.NET Core app. For example, you want to check the client has sent the request you expect. What are the request headers? Query string? Form values? Cookies? Or you want to check the response. Has the response started? What is the status code? etc.

This is what HttpContext looks like today when debugging in VS:

image

It's not horrible. But it's not great.

In this result you can see that CancellationToken uses debugger display attribute to display at a glance whether the token is canceled or not. That's a great use of customizing .NET debugging.

Wouldn't it be useful if the other properties on HttpContext were just as informative? For example, the collections here and on request and response told you their counts: Cookies Count = 1. Or the connection property displayed the connection's local and remote addresses. Or the request property displayed the request method and URL.

We have the tools and technology to make it better:

Describe the solution you'd like

Let's make a concerted effort to improve debugging HttpContext with debugging attributes.

Collections:

Objects:

Additional context

No response