CSharpUtils.Fastcgi.FastcgiHandler.FastcgiHandler C# (CSharp) Метод

FastcgiHandler() публичный Метод

public FastcgiHandler ( IFastcgiPipe FastcgiPipe, bool Debug = false ) : System
FastcgiPipe IFastcgiPipe
Debug bool
Результат System
		public FastcgiHandler(IFastcgiPipe FastcgiPipe, bool Debug = false)
		{
			this.Writer = new FastcgiPacketWriter(FastcgiPipe, Debug);
			this.Reader = new FastcgiPacketReader(FastcgiPipe, Debug);
			this.Reader.HandlePacket += Reader_HandlePacket;
		}