Пример #1
0
 public FastcgiRequest(FastcgiHandler FastcgiHandler, ushort RequestId)
 {
     this.FastcgiHandler = FastcgiHandler;
     this.RequestId      = RequestId;
     this.ParamsStream   = new FascgiRequestInputStream();
     this.StdinStream    = new FascgiRequestInputStream();
     this.StdoutStream   = new FascgiResponseOutputStream(this, Fastcgi.PacketType.FCGI_STDOUT);
     this.StderrStream   = new FascgiResponseOutputStream(this, Fastcgi.PacketType.FCGI_STDERR);
 }
Пример #2
0
 public FastcgiRequest(FastcgiHandler FastcgiHandler, ushort RequestId)
 {
     this.FastcgiHandler = FastcgiHandler;
     this.RequestId = RequestId;
     this.ParamsStream = new FascgiRequestInputStream();
     this.StdinStream = new FascgiRequestInputStream();
     this.StdoutStream = new FascgiResponseOutputStream(this, Fastcgi.PacketType.FCGI_STDOUT);
     this.StderrStream = new FascgiResponseOutputStream(this, Fastcgi.PacketType.FCGI_STDERR);
 }