jellyfin/MediaBrowser.Model/IO/IZipClient.cs

17 lines
387 B
C#
Raw Normal View History

2020-02-04 01:49:27 +01:00
#pragma warning disable CS1591
using System.IO;
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Model.IO
{
/// <summary>
/// Interface IZipClient.
2018-12-28 00:27:57 +01:00
/// </summary>
public interface IZipClient
{
void ExtractAllFromGz(Stream source, string targetPath, bool overwriteExistingFiles);
2020-08-31 22:20:19 +02:00
2018-12-28 00:27:57 +01:00
void ExtractFirstFileFromGz(Stream source, string targetPath, string defaultFileName);
}
}