Interface IZipFile
Represents a ZIP archive file.
Inherited Members
Namespace: VersOne.Epub.Environment
Assembly: VersOne.Epub.dll
Syntax
public interface IZipFile : IDisposable
Properties
View SourceIsDisposed
Gets a value indicating whether this file was disposed or not.
Declaration
bool IsDisposed { get; }
Property type: bool
Methods
View SourceGetEntry(string)
Retrieves a wrapper for the specified entry in the ZIP archive.
Declaration
IZipFileEntry? GetEntry(string entryName)
Parameters
Type | Name | Description |
---|---|---|
string | entryName | A path, relative to the root of the archive, that identifies the entry to retrieve. |
Returns
Type | Description |
---|---|
IZipFileEntry | A wrapper for the specified entry in the archive or |