File size: 782 Bytes
fab29d7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
using System;
namespace VersOne.Epub.Environment
{
/// <summary>
/// Represents a ZIP archive file.
/// </summary>
public interface IZipFile : IDisposable
{
/// <summary>
/// Gets a value indicating whether this file was disposed or not.
/// </summary>
bool IsDisposed { get; }
/// <summary>
/// Retrieves a wrapper for the specified entry in the ZIP archive.
/// </summary>
/// <param name="entryName">A path, relative to the root of the archive, that identifies the entry to retrieve.</param>
/// <returns>A wrapper for the specified entry in the archive or <c>null</c> if the entry does not exist in the archive.</returns>
IZipFileEntry? GetEntry(string entryName);
}
}
|