ln.http/ln.http/Http2Connection.cs

24 lines
628 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, Uri uri, HttpVersion httpVersion)
: base(listener, remoteEndpoint, connectionStream, method, uri, httpVersion)
{
throw new NotImplementedException();
}
public override void Run()
{
throw new NotImplementedException();
}
public override void SendResponse(HttpRequestContext requestContext)
{
throw new NotImplementedException();
}
}