public FastCGIServerClientHandlerAsync(FastCGIServerAsync FastcgiServerAsync, TcpClient Client)
		{
			this.FastcgiServerAsync = FastcgiServerAsync;
			this.Client = Client;
            this.Handlers = new Dictionary<ushort, FastCGIServerClientRequestHandlerAsync>();
		}
Esempio n. 2
0
 public FastCGIServerClientHandlerAsync(FastCGIServerAsync FastcgiServerAsync, TcpClient Client)
 {
     this.FastcgiServerAsync = FastcgiServerAsync;
     this.Client             = Client;
     this.Handlers           = new Dictionary <ushort, FastCGIServerClientRequestHandlerAsync>();
 }