Deployment Tools Foundation
ZipCompressionMethod Enumeration
Deployment Tools Foundation Namespaces ► Microsoft.Deployment.Compression.Zip ► ZipCompressionMethod
Identifies the compression method or "algorithm"
used for a single file within a zip archive.
Declaration Syntax| C# | Visual Basic | Visual C++ |
public enum ZipCompressionMethod
Public Enumeration ZipCompressionMethod
public enum class ZipCompressionMethod
Members| Member | Description |
|---|---|
| Store |
The file is stored (no compression)
|
| Shrink |
The file is Shrunk
|
| Reduce1 |
The file is Reduced with compression factor 1
|
| Reduce2 |
The file is Reduced with compression factor 2
|
| Reduce3 |
The file is Reduced with compression factor 3
|
| Reduce4 |
The file is Reduced with compression factor 4
|
| Implode |
The file is Imploded
|
| Deflate |
The file is Deflated;
the most common and widely-compatible form of zip compression.
|
| Deflate64 |
The file is Deflated using the enhanced Deflate64 method.
|
| BZip2 |
The file is compressed using the BZIP2 algorithm.
|
| Lzma |
The file is compressed using the LZMA algorithm.
|
| Ppmd |
The file is compressed using the PPMd algorithm.
|
Remarks
Proprietary zip implementations may define additional compression
methods outside of those included here.
Assembly: Microsoft.Deployment.Compression.Zip (Module: Microsoft.Deployment.Compression.Zip.dll) Version: 3.0.0.0 (3.9.1006.0)