Inheritance: AsyncWorker
Esempio n. 1
0
 public AsyncHttpContext(AsyncHttpWorker worker)
 {
     this.fWorker          = worker;
     this.fCurrentRequest  = new AsyncHttpRequest();
     this.fCurrentResponse = new HttpServerResponse();
 }
Esempio n. 2
0
 public AsyncHttpContext(AsyncHttpWorker worker)
 {
     this.fWorker = worker;
     this.fCurrentRequest = new AsyncHttpRequest();
     this.fCurrentResponse = new HttpServerResponse();
 }
Esempio n. 3
0
 protected internal virtual AsyncHttpContext NewContext(AsyncHttpWorker worker)
 {
     return(new AsyncHttpContext(worker));
 }
Esempio n. 4
0
 protected internal virtual AsyncHttpContext NewContext(AsyncHttpWorker worker)
 {
     return new AsyncHttpContext(worker);
 }