using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Text; using System.Threading.Tasks; namespace SimpleHttpServer; internal class RequestContext { public RequestContext(HttpListenerContext listenerContext) { ListenerContext = listenerContext; } public HttpListenerContext ListenerContext { get; } }