Open
Description
Is there a simple way to create a HttpContext with HTTP2 features? I want to write some HTTP2-ish unit tests.
var context = new DefaultHttpContext();
context.Response.AppendTrailers("", "");
This throws an error because there is no IHttpResponseTrailersFeature
.
Is there a simple way to make the context HTTP2-erized. If not, consider adding one.