IZipClient.cs 387 B

12345678910111213141516
  1. #pragma warning disable CS1591
  2. using System.IO;
  3. namespace MediaBrowser.Model.IO
  4. {
  5. /// <summary>
  6. /// Interface IZipClient.
  7. /// </summary>
  8. public interface IZipClient
  9. {
  10. void ExtractAllFromGz(Stream source, string targetPath, bool overwriteExistingFiles);
  11. void ExtractFirstFileFromGz(Stream source, string targetPath, string defaultFileName);
  12. }
  13. }