mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-14 21:23:38 +00:00
24 lines
700 B
C#
24 lines
700 B
C#
using System.IO;
|
|
using SharpCompress.Common;
|
|
|
|
namespace SharpCompress.Archive
|
|
{
|
|
public interface IArchiveEntry : IEntry
|
|
{
|
|
/// <summary>
|
|
/// Opens the current entry as a stream that will decompress as it is read.
|
|
/// Read the entire stream or use SkipEntry on EntryStream.
|
|
/// </summary>
|
|
Stream OpenEntryStream();
|
|
|
|
/// <summary>
|
|
/// The archive can find all the parts of the archive needed to extract this entry.
|
|
/// </summary>
|
|
bool IsComplete { get; }
|
|
|
|
/// <summary>
|
|
/// The archive instance this entry belongs to
|
|
/// </summary>
|
|
IArchive Archive { get; }
|
|
}
|
|
} |