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