16 lines
371 B
C#
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; }
|
|
}
|