Show / Hide Table of Contents

Enum DeflateStrategy

Strategies for deflater

Namespace: ICSharpCode.SharpZipLib.Zip.Compression
Assembly: ICSharpCode.SharpZipLib.dll
Syntax
public enum DeflateStrategy

Fields

Name Description
Default

The default strategy

Filtered

This strategy will only allow longer string repetitions. It is useful for random data with a small character set.

HuffmanOnly

This strategy will not look for string repetitions at all. It only encodes with Huffman trees (which means, that more common characters get a smaller encoding.

  • Improve this Doc
  • View Source
In This Article
Back to top Copyright © 2000-2022 SharpZipLib Contributors