Rebex.IO.Compression.ZStream.inflateSetDictionary C# (CSharp) Method

inflateSetDictionary() public method

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