HttpTwo icon indicating copy to clipboard operation
HttpTwo copied to clipboard

A basic C# HTTP/2 client library

Results 12 HttpTwo issues
Sort by recently updated
recently updated
newest added

Fixed the usage of dynamic table for HPACK, handle both Encoder & Decoder. Fixed the connection lost & reconnect handling. Reference to HPack dll directly since HPack have been updated....

Hi, I am testing the Http2 library and having issues with connecting to Apple. The issue is in the following line of code: await sslStream.AuthenticateAsClientAsync( ConnectionSettings.Host, ConnectionSettings.Certificates ?? new X509CertificateCollection(),...

Hello. Sometimes I have Timeout exception when I send APN to apple server. Below is my exception StackTrace: System.AggregateException: One or more errors occurred. ---> System.TimeoutException: The operation has timed...

Hi, I created a windows service, in C # .Net Framework 4.7.2 which uses HttpTwo. The service works fine for a few hours, but then crashes with this stack: ```...

What happens is that when we let the HTTP2Client idle for while (few min) and then post a new request, we receives immediately a SETTINGS frame for which the client...

hi, i want to know when supports push promise?

Hi. First off, congrats.. this is still the only native .net implementation out there! Ive been working on this for a while- lets say we want to connect to cloudflare....

Hi! I'm trying to use HttpTwo with APNS (development server). Any first request (POST, Connect, Ping) is processed successfully, but, after that, any other request except Disconnect fails with error...

It's a fix for #10 issue. Get rid of duplicate string.Format calls. Fix possible FormatExcetpion in two cases: 1) format argument parameter is a string with '{' 2) When initial...

Current logging implementation is not safe: ``` public void Error (string format, params object[] args) { if (Level >= LogLevel.Error) write (string.Format (format, args)); } void write (string format, params...