ln.http/ln.http/Http2Connection.cs

24 lines
653 B
C#

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();
}
}