internal ListenerContext(HttpListenerContext context) { InnerContext = context; Request = new ListenerRequest(context.Request, this); Response = new ListenerResponse(context.Response, this); User = context.User; }