Deflater.SetDictionary Method (Byte[])

Sets the dictionary which should be used in the deflate process. This call is equivalent to

setDictionary(dict, 0, dict.Length)
.

[Visual Basic]
Overloads Public Sub SetDictionary( _
   ByVal dict As Byte() _
)
[C#]
public void SetDictionary(
   byte[] dict
);

Parameters

dict

the dictionary.

Exceptions

Exception TypeCondition
System.InvalidOperationException if setInput () or deflate () were already called or another dictionary was already set.

See Also

Deflater Class | Deflater Members | ICSharpCode.SharpZipLib.Zip.Compression Namespace | Deflater.SetDictionary Overload List