I am currently using HttpWebRequest class from .NET Framework in my application for all http(s) communication, but I am planning to replace it with third party component. One of the things that bothers me with HttpWebRequest is that it is only possible to set http protocol version 1.0 or 1.1 and I doubt that MS will support http/2 in classic .NET now that all their efforts are on .NET Core. Chilkat Http seems very good replacement, but I would like to know if it supports HTTP/2. If not, are there any plans to support it?
↧