System.util.zlib.ZStream.deflateParams C# (CSharp) Method

deflateParams() public method

public deflateParams ( int level, int strategy ) : int
level int
strategy int
return int
        public int deflateParams(int level, int strategy){
            if(dstate==null) return Z_STREAM_ERROR;
            return dstate.deflateParams(this, level, strategy);
        }
        public int deflateSetDictionary (byte[] dictionary, int dictLength){