SharpGIS.ZLib.ZlibCodec.SetDictionary C# (CSharp) Méthode

SetDictionary() public méthode

Set the dictionary to be used for either Inflation or Deflation.
public SetDictionary ( byte dictionary ) : int
dictionary byte The dictionary bytes to use.
Résultat int
        public int SetDictionary(byte[] dictionary)
        {
            if (istate != null)
                return istate.SetDictionary(dictionary);

            throw new ZlibException("No Inflate state!");
        }