How to make the .net HttpClient use http 2.0?

前端 未结 4 1513
一生所求
一生所求 2020-12-05 05:30

I have an asp.net web api hosted on IIS 10 (windows server 2016). When I make a GET request to this from a Microsoft Edge browser, I see that HTTP 2.0

相关标签:
4条回答
  • 2020-12-05 05:35

    HttpClient does not support HTTP/2 yet. It will be available in the next release (code name KATANA). Here is the link to their source code for the next release.

    Till then, you could implement your own HttpMessageHandler object that implements HTTP/2 and pass it to the HttpClient's constructor (you probably can use their source code from KATANA).

    0 讨论(0)
  • 2020-12-05 05:50

    1.Make sure you are on the latest version of Windows 10.

    2.Install WinHttpHandler:

    Install-Package System.Net.Http.WinHttpHandler
    

    3.Extend WinHttpHandler to add http2.0 support:

    public class Http2CustomHandler : WinHttpHandler
    {
        protected override Task<HttpResponseMessage> SendAsync(HttpRequestMessage request, System.Threading.CancellationToken cancellationToken)
        {
            request.Version = new Version("2.0");
            return base.SendAsync(request, cancellationToken);
        }
    }
    

    4.Pass above handler to the HttpClient constructor

    using (var httpClient = new HttpClient(new Http2CustomHandler()))
    {
          // your custom code
    }
    
    0 讨论(0)
  • 2020-12-05 05:51

    In addition to WinHttpHandler (as described in Shawinder Sekhon's answer), .NET Core 3.0 includes HTTP/2 support in the default SocketsHttpHandler (#30740). Since the default is still HTTP/1.1 outside of UWP, Version must be specified on each request. This can be done on an as-needed basis for each request:

    using (var client = new HttpClient())
    {
        client.BaseAddress = new Uri("https://myapp.cloudapp.net/");
    
        HttpResponseMessage response = await client.SendAsync(
            new HttpRequestMessage(HttpMethod.Get, "RestController/Native")
            {
                Version = HttpVersion.Version20,
            });
        if (response.IsSuccessStatusCode)
        {
            await response.Content.CopyToAsync(new MemoryStream(buffer));
        }
    }
    

    Or for all requests by using a custom HttpMessageHandler, such as:

    public class ForceHttp2Handler : DelegatingHandler
    {
        public ForceHttp2Handler(HttpMessageHandler innerHandler)
            : base(innerHandler)
        {
        }
    
        protected override Task<HttpResponseMessage> SendAsync(
            HttpRequestMessage request, CancellationToken cancellationToken)
        {
            request.Version = HttpVersion.Version20;
            return base.SendAsync(request, cancellationToken);
        }
    }
    

    which can delegate to SocketsHttpHandler, WinHttpHandler, or any other HttpMessageHandler which supports HTTP/2:

    using (var client = new HttpClient(new ForceHttp2Handler(new SocketsHttpHandler())))
    {
        client.BaseAddress = new Uri("https://myapp.cloudapp.net/");
    
        HttpResponseMessage response = await client.GetAsync("RestController/Native");
        if (response.IsSuccessStatusCode)
        {
            await response.Content.CopyToAsync(new MemoryStream(buffer));
        }
    }
    ``
    
    0 讨论(0)
  • 2020-12-05 06:01

    HTTP/2 looks like it will be supported in C# client calls with .NET 4.6.2

    https://msdn.microsoft.com/en-us/library/ms171868(v=vs.110).aspx

    HTTP/2 Support (Windows 10)

    HTTP/2 is a new version of the HTTP protocol that provides much better connection utilization (fewer round-trips between client and server), resulting in lower latency web page loading for users. Web pages (as opposed to services) benefit the most from HTTP/2, since the protocol optimizes for multiple artifacts being requested as part of a single experience. HTTP/2 support has been added to ASP.NET in the .NET Framework 4.6. Because networking functionality exists at multiple layers, new features were required in Windows, in IIS, and in ASP.NET to enable HTTP/2. You must be running on Windows 10 to use HTTP/2 with ASP.NET.

    HTTP/2 is also supported and on by default for Windows 10 Universal Windows Platform (UWP) apps that use the System.Net.Http.HttpClient API.

    0 讨论(0)
提交回复
热议问题