public HttpListenerContextImpl(HttpListenerContext context)
 {
     this.context = context;
     request = new HttpListenerRequestImpl(context.Request);
     response = new HttpListenerResponseImpl(context.Response);
 }
Beispiel #2
0
 public HttpListenerContextImpl(HttpListenerContext context)
 {
     this.context = context;
     request      = new HttpListenerRequestImpl(context.Request);
     response     = new HttpListenerResponseImpl(context.Response);
 }