Files
sharpcompress/SharpCompress/IReader.cs
2013-05-04 16:58:50 +01:00

19 lines
338 B
C#

using Windows.Storage.Streams;
namespace SharpCompress
{
public interface IReader
{
ArchiveType ArchiveType
{
get;
}
IEntry Entry
{
get;
}
void WriteEntryTo(IOutputStream writableStream);
bool MoveToNextEntry();
}
}