aspnet / KestrelHttpServer

[Archived] A cross platform web server for ASP.NET Core. Project moved to https://github.com/aspnet/AspNetCore
Apache License 2.0
2.63k stars 528 forks source link

Is there a .NET core 2.2 HttpClient that can talk to Kestrel via http2? #2993

Closed AceHack closed 6 years ago

AceHack commented 6 years ago

Trying to test out some http2 performance stuff. Thanks.

Tratcher commented 6 years ago

Sort of. WinHttpHandler (no longer the default on Windows in 2.1) can do it. Or do you need Linux? I don't know what CurlHandler can do.

The SocketsHttpHandler (2.1 default) won't get HTTP/2 support until 3.0.

AceHack commented 6 years ago

@Tratcher thanks for the through explanation. I was pulling my hair our.