Files
linux-packaging-mono/mcs/class/System.IO.Compression/SharpCompress/Writer/IWriter.cs

12 lines
274 B
C#
Raw Normal View History

using System;
using System.IO;
using SharpCompress.Common;
namespace SharpCompress.Writer
{
internal interface IWriter : IDisposable
{
ArchiveType WriterType { get; }
void Write(string filename, Stream source, DateTime? modificationTime);
}
}