System.IO.Compression.FastEncoder.FastEncoder C# (CSharp) Méthode

FastEncoder() public méthode

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