CSharpHttpServer/SimpleHttpServer/RequestContext.cs
2024-01-09 06:05:15 +01:00

16 lines
371 B
C#

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