Show / Hide Table of Contents

Interface IZipFile

Represents a ZIP archive file.

Inherited Members
IDisposable.Dispose()
Namespace: VersOne.Epub.Environment
Assembly: VersOne.Epub.dll
Syntax
public interface IZipFile : IDisposable

Properties

View Source

IsDisposed

Gets a value indicating whether this file was disposed or not.

Declaration
bool IsDisposed { get; }
Property type: bool

Methods

View Source

GetEntry(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 null if the entry does not exist in the archive.

  • View Source
In this article
Back to top Generated by DocFX