IWriter.cs 273 B

123456789101112
  1. using System;
  2. using System.IO;
  3. using SharpCompress.Common;
  4. namespace SharpCompress.Writers
  5. {
  6. public interface IWriter : IDisposable
  7. {
  8. ArchiveType WriterType { get; }
  9. void Write(string filename, Stream source, DateTime? modificationTime);
  10. }
  11. }