mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-07-19 07:25:24 +00:00
21 lines
600 B
C#
21 lines
600 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();
|
|
|
|
void WriteTo(Stream stream);
|
|
|
|
/// <summary>
|
|
/// The archive can find all the parts of the archive needed to extract this entry.
|
|
/// </summary>
|
|
bool IsComplete { get; }
|
|
}
|
|
} |