Classes | |
class | AddProgressEventArgs |
Provides information about the progress of a Add operation. More... | |
class | CRC32 |
Calculates a 32bit Cyclic Redundancy Checksum (CRC) using the same polynomial used by Zip. More... | |
class | CrcCalculatorStream |
A Stream that calculates a CRC32 (a checksum) on all bytes read, or on all bytes written. More... | |
class | DeflateStream |
A class for compressing and decompressing streams using the Deflate algorithm. More... | |
class | ExtractProgressEventArgs |
Provides information about the progress of the extract operation. More... | |
class | GZipStream |
A class for compressing and decompressing GZIP streams. More... | |
class | ReadProgressEventArgs |
Provides information about the progress of a Read operation. More... | |
class | SaveProgressEventArgs |
Provides information about the progress of a save operation. More... | |
class | ZipEntry |
Represents a single entry in a ZipFile. Typically, applications get a ZipEntry by enumerating the entries within a ZipFile, or by adding an entry to a ZipFile. More... | |
class | ZipErrorEventArgs |
Provides information about the an error that occurred while zipping. More... | |
class | ZipFile |
class | ZipProgressEventArgs |
Provides information about the progress of a save, read, or extract operation. This is a base class; you will probably use one of the classes derived from this one. More... | |
class | ZlibBaseStream |
The internal class to implement compression and decompression using Zlib library. More... | |
class | ZlibCodec |
Encoder and Decoder for ZLIB and DEFLATE (IETF RFC1950 and RFC1951). More... | |
class | ZlibStream |
Represents a Zlib stream for compression or decompression. More... | |
Typedefs | |
typedef std::function< bool(int64_t, int64_t, System::String)> | ReReadApprovalCallback |
typedef std::function< bool(System::String, System::String)> | WantCompressionCallback |
Enumerations | |
enum class | FlushType |
Describes how to flush the current deflate operation. The different FlushType values are useful when using a Deflate in a streaming application. More... | |
enum class | CompressionLevel |
The compression level to be used when using a DeflateStream or ZlibStream with CompressionMode.Compress. More... | |
enum class | CompressionStrategy |
Describes options for how the compression algorithm is executed. Different strategies work better on different sorts of data. The strategy parameter can affect the compression ratio and the speed of compression but not the correctness of the compresssion. More... | |
enum class | CompressionMode |
An enum to specify the direction of transcoding - whether to compress or decompress. More... | |
enum class | ZlibStreamFlavor |
Zlib-specific flavor bits. More... | |
enum class | ZlibConstants : int |
A bunch of constants used in the Zlib interface. More... | |
enum class | EncryptionAlgorithm |
enum class | ZipProgressEventType |
In an EventArgs type, indicates which sort of progress event is being reported. There are events for reading, events for saving, and events for extracting. More... | |
enum class | ExtractExistingFileAction |
enum class | Zip64Option |
enum class | ZipEntrySource |
enum class | ZipEntryTimestamp |
enum class | ZipErrorAction |
typedef std::function<bool(int64_t, int64_t, System::String)> Aspose::Zip::ReReadApprovalCallback |
typedef std::function<bool(System::String, System::String)> Aspose::Zip::WantCompressionCallback |
|
strong |
The compression level to be used when using a DeflateStream or ZlibStream with CompressionMode.Compress.
Enumerator | |
---|---|
None | |
Level0 | |
BestSpeed | |
Level1 | |
Level2 | |
Level3 | |
Level4 | |
Level5 | |
Default | |
Level6 | |
Level7 | |
Level8 | |
BestCompression | |
Level9 |
|
strong |
|
strong |
Describes options for how the compression algorithm is executed. Different strategies work better on different sorts of data. The strategy parameter can affect the compression ratio and the speed of compression but not the correctness of the compresssion.
Enumerator | |
---|---|
Default | |
Filtered | |
HuffmanOnly | |
Rle | |
Fixed |
|
strong |
|
strong |
|
strong |
|
strong |
|
strong |
|
strong |
|
strong |
|
strong |
In an EventArgs type, indicates which sort of progress event is being reported. There are events for reading, events for saving, and events for extracting.
|
strong |
|
strong |