System.IO.Compression.FastEncoder.FastEncoder C# (CSharp) Method

FastEncoder() public method

public FastEncoder ( bool doGZip ) : System
doGZip bool
return System
        public FastEncoder(bool doGZip) {
            this.usingGzip = doGZip;
            this.inputWindow = new FastEncoderWindow();
            this.inputBuffer = new DeflateInput();
            this.output = new Output();
            this.currentMatch = new Match();
        }