aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/IO/IZipClient.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-09-24 20:54:51 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-09-24 20:54:51 -0400
commitfe5a9232c84cea113336005b3c7cbd7fe77a2d80 (patch)
tree9fb1412f4a8ca4303ec276b6ab6e096f98eed58d /MediaBrowser.Model/IO/IZipClient.cs
parent0ab379e271afe69372806ab0e24a874d3f085456 (diff)
moved a few things for mono
Diffstat (limited to 'MediaBrowser.Model/IO/IZipClient.cs')
-rw-r--r--MediaBrowser.Model/IO/IZipClient.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/MediaBrowser.Model/IO/IZipClient.cs b/MediaBrowser.Model/IO/IZipClient.cs
index c9e7e0db6..694c393aa 100644
--- a/MediaBrowser.Model/IO/IZipClient.cs
+++ b/MediaBrowser.Model/IO/IZipClient.cs
@@ -22,5 +22,21 @@ namespace MediaBrowser.Model.IO
/// <param name="targetPath">The target path.</param>
/// <param name="overwriteExistingFiles">if set to <c>true</c> [overwrite existing files].</param>
void ExtractAll(Stream source, string targetPath, bool overwriteExistingFiles);
+
+ /// <summary>
+ /// Extracts all from7z.
+ /// </summary>
+ /// <param name="sourceFile">The source file.</param>
+ /// <param name="targetPath">The target path.</param>
+ /// <param name="overwriteExistingFiles">if set to <c>true</c> [overwrite existing files].</param>
+ void ExtractAllFrom7z(string sourceFile, string targetPath, bool overwriteExistingFiles);
+
+ /// <summary>
+ /// Extracts all from7z.
+ /// </summary>
+ /// <param name="source">The source.</param>
+ /// <param name="targetPath">The target path.</param>
+ /// <param name="overwriteExistingFiles">if set to <c>true</c> [overwrite existing files].</param>
+ void ExtractAllFrom7z(Stream source, string targetPath, bool overwriteExistingFiles);
}
}