System.IO.Compression.FastEncoder.FastEncoder C# (CSharp) Метод

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

public FastEncoder ( bool doGZip ) : System
doGZip bool
Результат System
        public FastEncoder(bool doGZip) {
            this.usingGzip = doGZip;
            this.inputWindow = new FastEncoderWindow();
            this.inputBuffer = new DeflateInput();
            this.output = new Output();
            this.currentMatch = new Match();
        }