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

deflateSetDictionary() public method

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