DeflateCompressionSettings

DeflateCompressionSettings class

Settings for Deflate compression method.

public class DeflateCompressionSettings : CompressionSettings

Constructors

NameDescription
DeflateCompressionSettings()Initializes a new instance of the DeflateCompressionSettings class.

Remarks

Deflate is a lossless data compression algorithm that uses a combination of the LZ77 algorithm and Huffman coding.

See standard here: https://tools.ietf.org/html/rfc1951

See Also