|
Fingerprint_Card
|
Namespaces | |
| namespace | Compression |
Classes | |
| class | BaseArchiveStorage |
| An abstract IArchiveStorage suitable for extension by inheritance. More... | |
| class | DescriptorData |
| Holds data pertinent to a data descriptor. More... | |
| class | DiskArchiveStorage |
| An IArchiveStorage implementation suitable for hard disks. More... | |
| class | DynamicDiskDataSource |
| Default implementation of IDynamicDataSource for files stored on disk. More... | |
| class | EntryPatchData |
| class | ExtendedUnixData |
| Class representing extended unix date time values. More... | |
| class | FastZip |
| FastZip provides facilities for creating and extracting zip files. More... | |
| class | FastZipEvents |
| FastZipEvents supports all events applicable to FastZip operations. More... | |
| interface | IArchiveStorage |
| Defines facilities for data storage when updating Zip Archives. More... | |
| interface | IDynamicDataSource |
| Represents a source of data that can dynamically provide multiple data sources based on the parameters passed. More... | |
| interface | IEntryFactory |
| Defines factory methods for creating new ZipEntry values. More... | |
| interface | IStaticDataSource |
| Provides a static way to obtain a source of data for an entry. More... | |
| interface | ITaggedData |
| ExtraData tagged value interface. More... | |
| interface | ITaggedDataFactory |
| A factory that creates tagged data instances. More... | |
| class | KeysRequiredEventArgs |
| Arguments used with KeysRequiredEvent. More... | |
| class | MemoryArchiveStorage |
| An IArchiveStorage implementation suitable for in memory streams. More... | |
| class | NTTaggedData |
| Class handling NT date time values. More... | |
| class | RawTaggedData |
| A raw binary tagged value. More... | |
| class | StaticDiskDataSource |
| Default implementation of a IStaticDataSource for use with files stored on disk. More... | |
| class | TestStatus |
| Status returned returned by ZipTestResultHandler during testing. More... | |
| class | WindowsNameTransform |
| WindowsNameTransform transforms ZipFile names to windows compatible ones. More... | |
| class | ZipConstants |
| This class contains constants used for Zip format files. More... | |
| class | ZipEntry |
| This class represents an entry in a zip archive. This can be a file or a directory ZipFile and ZipInputStream will give you instances of this class as information about the members in an archive. ZipOutputStream uses an instance of this class when creating an entry in a Zip file. Author of the original java version : Jochen Hoenicke. More... | |
| class | ZipEntryFactory |
| Basic implementation of IEntryFactory More... | |
| class | ZipException |
| Represents exception conditions specific to Zip archive handling. More... | |
| class | ZipExtraData |
| A class to handle the extra data field for Zip entries. More... | |
| class | ZipFile |
| This class represents a Zip archive. You can ask for the contained entries, or get an input stream for a file entry. The entry is automatically decompressed. More... | |
| class | ZipHelperStream |
| This class assists with writing/reading from Zip files. More... | |
| class | ZipInputStream |
| This is an InflaterInputStream that reads the files baseInputStream an zip archive one after another. It has a special method to get the zip entry of the next file. The zip entry contains information about the file name size, compressed size, Crc, etc. It includes support for Stored and Deflated entries. Author of the original java version : Jochen Hoenicke. More... | |
| class | ZipNameTransform |
| ZipNameTransform transforms names as per the Zip file naming convention. More... | |
| class | ZipOutputStream |
| This is a DeflaterOutputStream that writes the files into a zip archive one after another. It has a special method to start a new zip entry. The zip entries contains information about the file name size, compressed size, CRC, etc. More... | |
Enumerations | |
| enum | UseZip64 { Off , On , Dynamic } |
| Determines how entries are tested to see if they should use Zip64 extensions or not. More... | |
| enum | CompressionMethod { Stored = 0 , Deflated = 8 , Deflate64 = 9 , BZip2 = 11 , WinZipAES = 99 } |
| The kind of compression used for an entry in an archive. More... | |
| enum | EncryptionAlgorithm { None = 0 , PkzipClassic = 1 , Des = 0x6601 , RC2 = 0x6602 , TripleDes168 = 0x6603 , TripleDes112 = 0x6609 , Aes128 = 0x660e , Aes192 = 0x660f , Aes256 = 0x6610 , RC2Corrected = 0x6702 , Blowfish = 0x6720 , Twofish = 0x6721 , RC4 = 0x6801 , Unknown = 0xffff } |
| Identifies the encryption algorithm used for an entry. More... | |
| enum | GeneralBitFlags : int { Encrypted = 0x0001 , Method = 0x0006 , Descriptor = 0x0008 , ReservedPKware4 = 0x0010 , Patched = 0x0020 , StrongEncryption = 0x0040 , Unused7 = 0x0080 , Unused8 = 0x0100 , Unused9 = 0x0200 , Unused10 = 0x0400 , UnicodeText = 0x0800 , EnhancedCompress = 0x1000 , HeaderMasked = 0x2000 , ReservedPkware14 = 0x4000 , ReservedPkware15 = 0x8000 } |
| Defines the contents of the general bit flags field for an archive entry. More... | |
| enum | HostSystemID { Msdos = 0 , Amiga = 1 , OpenVms = 2 , Unix = 3 , VMCms = 4 , AtariST = 5 , OS2 = 6 , Macintosh = 7 , ZSystem = 8 , Cpm = 9 , WindowsNT = 10 , MVS = 11 , Vse = 12 , AcornRisc = 13 , Vfat = 14 , AlternateMvs = 15 , BeOS = 16 , Tandem = 17 , OS400 = 18 , OSX = 19 , WinZipAES = 99 } |
| Defines known values for the HostSystemID property. More... | |
| enum | TestStrategy { FindFirstError , FindAllErrors } |
| The strategy to apply to testing. More... | |
| enum | TestOperation { Initialising , EntryHeader , EntryData , EntryComplete , MiscellaneousTests , Complete } |
| The operation in progress reported by a ZipTestResultHandler during testing. More... | |
| enum | FileUpdateMode { Safe , Direct } |
| The possible ways of applying updates to an archive. More... | |
Functions | |
| delegate void | ZipTestResultHandler (TestStatus status, string message) |
| Delegate invoked during testing if supplied indicating current progress and status. | |
The kind of compression used for an entry in an archive.
| Enumerator | |
|---|---|
| Stored | A direct copy of the file contents is held in the archive. |
| Deflated | Common Zip compression method using a sliding dictionary of up to 32KB and secondary compression from Huffman/Shannon-Fano trees. |
| Deflate64 | An extension to deflate with a 64KB window. Not supported by Zip currently. |
| BZip2 | |
| WinZipAES | WinZip special for AES encryption, Now supported by Zip. |
Identifies the encryption algorithm used for an entry.
The possible ways of applying updates to an archive.
| Enumerator | |
|---|---|
| Safe | Perform all updates on temporary files ensuring that the original file is saved. |
| Direct | Update the archive directly, which is faster but less safe. |
| enum ICSharpCode.SharpZipLib.Zip.GeneralBitFlags : int |
Defines the contents of the general bit flags field for an archive entry.
Defines known values for the HostSystemID property.
The operation in progress reported by a ZipTestResultHandler during testing.
TestArchive
Determines how entries are tested to see if they should use Zip64 extensions or not.
| Enumerator | |
|---|---|
| Off | Zip64 will not be forced on entries during processing. An entry can have this overridden if required ZipEntry.ForceZip64 |
| On | Zip64 should always be used. |
| Dynamic | #ZipLib will determine use based on entry values when added to archive. |
| delegate void ICSharpCode.SharpZipLib.Zip.ZipTestResultHandler | ( | TestStatus | status, |
| string | message ) |