New to Telerik Document ProcessingStart a free 30-day trial

Defines the compression or marker methods the ZIP library uses to encode entry data, including raw storage, Deflate, LZMA, and the AES marker (99) used when WinZip AES encryption is applied.

Definition

Namespace:Telerik.Windows.Zip

Assembly:Telerik.Windows.Zip.dll

Syntax:

C#
[SuppressMessage("Microsoft.Design", "CA1027:MarkEnumsWithFlags")]
public enum CompressionMethod

Fields

Marks an entry encrypted with AES (method value 99); the actual underlying compression method is stored in the AES extra data field.

C#
Aes = 99

Compresses the file with the Deflate algorithm (RFC 1951), balancing speed and size for general data.

C#
Deflate = 8

Compresses the file using the LZMA algorithm, providing high ratio at the cost of greater CPU and memory.

C#
Lzma = 14

Stores the file without compression; use for already compressed or very small data to avoid overhead.

C#
Stored = 0
In this article
DefinitionFieldsAesDeflateLzmaStored
Not finding the help you need?
Contact Support