ICSharpCode.SharpZipLib.Zip.Compression.Deflater.SetDictionary C# (CSharp) Method

SetDictionary() public method

Sets the dictionary which should be used in the deflate process. This call is equivalent to setDictionary(dict, 0, dict.Length).
/// if SetInput () or Deflate () were already called or another dictionary was already set. ///
public SetDictionary ( byte dictionary ) : void
dictionary byte /// the dictionary. ///
return void
        public void SetDictionary(byte[] dictionary)
        {
            SetDictionary(dictionary, 0, dictionary.Length);
        }

Same methods

Deflater::SetDictionary ( byte dictionary, int index, int count ) : void