From 48facb797ed912e4ea6b04b17d1ff190ac2daac4 Mon Sep 17 00:00:00 2001 From: stefan Date: Wed, 12 Sep 2018 19:26:21 +0200 Subject: Update to 3.5.2 and .net core 2.1 --- MediaBrowser.Model/IO/IZipClient.cs | 85 ------------------------------------- 1 file changed, 85 deletions(-) delete mode 100644 MediaBrowser.Model/IO/IZipClient.cs (limited to 'MediaBrowser.Model/IO/IZipClient.cs') diff --git a/MediaBrowser.Model/IO/IZipClient.cs b/MediaBrowser.Model/IO/IZipClient.cs deleted file mode 100644 index 4ebcba9d8..000000000 --- a/MediaBrowser.Model/IO/IZipClient.cs +++ /dev/null @@ -1,85 +0,0 @@ -using System.IO; - -namespace MediaBrowser.Model.IO -{ - /// - /// Interface IZipClient - /// - public interface IZipClient - { - /// - /// Extracts all. - /// - /// The source file. - /// The target path. - /// if set to true [overwrite existing files]. - void ExtractAll(string sourceFile, string targetPath, bool overwriteExistingFiles); - - /// - /// Extracts all. - /// - /// The source. - /// The target path. - /// if set to true [overwrite existing files]. - void ExtractAll(Stream source, string targetPath, bool overwriteExistingFiles); - - void ExtractAllFromGz(Stream source, string targetPath, bool overwriteExistingFiles); - void ExtractFirstFileFromGz(Stream source, string targetPath, string defaultFileName); - - /// - /// Extracts all from zip. - /// - /// The source. - /// The target path. - /// if set to true [overwrite existing files]. - void ExtractAllFromZip(Stream source, string targetPath, bool overwriteExistingFiles); - - /// - /// Extracts all from7z. - /// - /// The source file. - /// The target path. - /// if set to true [overwrite existing files]. - void ExtractAllFrom7z(string sourceFile, string targetPath, bool overwriteExistingFiles); - - /// - /// Extracts all from7z. - /// - /// The source. - /// The target path. - /// if set to true [overwrite existing files]. - void ExtractAllFrom7z(Stream source, string targetPath, bool overwriteExistingFiles); - - /// - /// Extracts all from tar. - /// - /// The source file. - /// The target path. - /// if set to true [overwrite existing files]. - void ExtractAllFromTar(string sourceFile, string targetPath, bool overwriteExistingFiles); - - /// - /// Extracts all from tar. - /// - /// The source. - /// The target path. - /// if set to true [overwrite existing files]. - void ExtractAllFromTar(Stream source, string targetPath, bool overwriteExistingFiles); - - /// - /// Extracts all from rar. - /// - /// The source file. - /// The target path. - /// if set to true [overwrite existing files]. - void ExtractAllFromRar(string sourceFile, string targetPath, bool overwriteExistingFiles); - - /// - /// Extracts all from rar. - /// - /// The source. - /// The target path. - /// if set to true [overwrite existing files]. - void ExtractAllFromRar(Stream source, string targetPath, bool overwriteExistingFiles); - } -} -- cgit v1.2.3