Inheritance: AsyncWorker
コード例 #1
0
ファイル: AsyncHttpServer.cs プロジェクト: sp00x/internetpack
 public AsyncHttpContext(AsyncHttpWorker worker)
 {
     this.fWorker          = worker;
     this.fCurrentRequest  = new AsyncHttpRequest();
     this.fCurrentResponse = new HttpServerResponse();
 }
コード例 #2
0
 public AsyncHttpContext(AsyncHttpWorker worker)
 {
     this.fWorker = worker;
     this.fCurrentRequest = new AsyncHttpRequest();
     this.fCurrentResponse = new HttpServerResponse();
 }
コード例 #3
0
ファイル: AsyncHttpServer.cs プロジェクト: sp00x/internetpack
 protected internal virtual AsyncHttpContext NewContext(AsyncHttpWorker worker)
 {
     return(new AsyncHttpContext(worker));
 }
コード例 #4
0
 protected internal virtual AsyncHttpContext NewContext(AsyncHttpWorker worker)
 {
     return new AsyncHttpContext(worker);
 }