using System; using System.IO; using System.Net; namespace ln.http; public class Http2Connection : HttpConnection { public Http2Connection(Listener listener, IPEndPoint remoteEndpoint, Stream connectionStream, string method, string requestUriLine, HttpVersion httpVersion) : base(listener, remoteEndpoint, connectionStream, method, requestUriLine, httpVersion) { throw new NotImplementedException(); } public override void Run() { throw new NotImplementedException(); } public override void SendResponse(HttpRequestContext requestContext) { throw new NotImplementedException(); } }