The Xceed.Compression.Formats namespace defines various compressed stream classes which can be constructed around any kind of Stream object to compress data that is written to the stream and decompress data that is read from the stream.
Classes
| Class | Description |
| ChecksumStream | Represents a pass-through stream that calculates a checksum on the data read or written to the inner stream. |
| FormattedCompressedStream | Represents a pass-through stream which writes the header and footer of formatted compressed streams. |
| GZipCompressedStream | Represents a pass-through stream that reads and writes GZip formatted compressed data. |
| GZipHeader | Represents the header used by the GZipCompressedStream class. |
| Licenser | Class which is used to register the classes located in the Xceed.Compression.Formats namespace.
|
| LZMACompressedStream | Represents a pass-through stream that reads and writes LZMA formatted compressed data. |
| XceedCompressedStream | Represents a pass-through stream that reads and writes Xceed formatted compressed data. |
| XceedCompressedStreamEx | Represents a pass-through stream that reads and writes Xceed formatted compressed data. Use this class to decompress or compress data compatible with the ActiveX Xceed Zip Compression Library (XceedCompression object). |
| ZLibCompressedStream | Represents a pass-through stream that reads and writes ZLib formatted compressed data. |
Enumerations
| Enumeration | Description |
| ChecksumType | Represents the checksum type that will be used to calculate a stream's checksum. |
See Also