Enum ArchiveErrorFlags
Problems 7-Zip reports for an archive it has opened. Mirrors 7-Zip's
kpv_ErrorFlags_* values.
Namespace: SharpSevenZip
Assembly: SharpSevenZip.dll
Syntax
[Flags]
public enum ArchiveErrorFlags
Fields
| Name | Description |
|---|---|
| CrcError | A checksum stored in the archive does not match. |
| DataAfterEnd | The archive is followed by data that is not part of it. Only a few handlers report this themselves; for the rest it is measured against the physical size. |
| DataError | The archive contains damaged data. |
| EncryptedHeadersError | The encrypted headers could not be decoded. |
| HeadersError | The headers are damaged. |
| IsNotArchive | The data was not recognized as an archive of this format. |
| None | No problem was reported. |
| UnavailableStart | The archive begins before the start of the available data. |
| UnconfirmedStart | The start of the archive could not be confirmed. |
| UnexpectedEnd | The archive is truncated. |
| UnsupportedFeature | The archive uses a format feature this build does not implement. |
| UnsupportedMethod | The archive uses a compression method this build cannot decode. |