Interface IZipFileEntry
Represents a compressed file within a ZIP archive.
Namespace: VersOne.Epub.Environment
Assembly: VersOne.Epub.dll
Syntax
public interface IZipFileEntry
Properties
View SourceCompressedLength
Gets the compressed size of the entry in the ZIP archive.
Declaration
long CompressedLength { get; }
Property type: long
View SourceLength
Gets the uncompressed size of the entry in the ZIP archive.
Declaration
long Length { get; }
Property type: long
Methods
View SourceOpen()
Opens the entry from the ZIP archive.
Declaration
Stream Open()
Returns
| Type | Description |
|---|---|
| Stream | The stream that represents the contents of the entry. |