Enum LibraryFeature
The set of features supported by the library.
Namespace: SharpSevenZip
Assembly: SharpSevenZip.dll
Syntax
[Flags]
[CLSCompliant(false)]
public enum LibraryFeature : uint
Fields
Name | Description |
---|---|
Compress7z | The library can compress data to 7zip archives with LZMA method. |
Compress7zAll | The library can compress data to 7zip archives with all methods known. |
Compress7zLZMA2 | The library can compress data to 7zip archives with LZMA2 method. |
CompressAll | The library can compress data to all types of archives supported. |
CompressBzip2 | The library can compress data to bzip2 archives. |
CompressGzip | The library can compress data to gzip archives. |
CompressTar | The library can compress data to tar archives. |
CompressXz | The library can compress data to xz archives. |
CompressZip | The library can compress data to zip archives. |
Extract7z | The library can extract 7zip archives compressed with LZMA method. |
Extract7zAll | The library can extract 7z archives compressed with all known methods. |
Extract7zLZMA2 | The library can extract 7zip archives compressed with LZMA2 method. |
ExtractAll | The library can extract all types of archives supported. |
ExtractBzip2 | The library can extract bzip2 archives. |
ExtractGzip | The library can extract gzip archives. |
ExtractRar | The library can extract rar archives. |
ExtractTar | The library can extract tar archives. |
ExtractXz | The library can extract xz archives. |
ExtractZip | The library can extract zip archives. |
Modify | The library can modify archives. |
None | Default feature. |