aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/IO/IIsoMounter.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-08-09 21:16:31 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-08-09 21:16:31 -0400
commite0c387446b2562ac6b153d36d357a71e70fa736b (patch)
tree4cf750dfbfa6882986f9f1c8e8581a30a6d6977e /MediaBrowser.Model/IO/IIsoMounter.cs
parent3b25b4d5b2030977bdc2deaf9093621c82d50835 (diff)
reworked iso manager
Diffstat (limited to 'MediaBrowser.Model/IO/IIsoMounter.cs')
-rw-r--r--MediaBrowser.Model/IO/IIsoMounter.cs27
1 files changed, 27 insertions, 0 deletions
diff --git a/MediaBrowser.Model/IO/IIsoMounter.cs b/MediaBrowser.Model/IO/IIsoMounter.cs
new file mode 100644
index 0000000000..91a0453681
--- /dev/null
+++ b/MediaBrowser.Model/IO/IIsoMounter.cs
@@ -0,0 +1,27 @@
+using System;
+using System.IO;
+using System.Threading;
+using System.Threading.Tasks;
+
+namespace MediaBrowser.Model.IO
+{
+ public interface IIsoMounter : IDisposable
+ {
+ /// <summary>
+ /// Mounts the specified iso path.
+ /// </summary>
+ /// <param name="isoPath">The iso path.</param>
+ /// <param name="cancellationToken">The cancellation token.</param>
+ /// <returns>IsoMount.</returns>
+ /// <exception cref="ArgumentNullException">isoPath</exception>
+ /// <exception cref="IOException">Unable to create mount.</exception>
+ Task<IIsoMount> Mount(string isoPath, CancellationToken cancellationToken);
+
+ /// <summary>
+ /// Determines whether this instance can mount the specified path.
+ /// </summary>
+ /// <param name="path">The path.</param>
+ /// <returns><c>true</c> if this instance can mount the specified path; otherwise, <c>false</c>.</returns>
+ bool CanMount(string path);
+ }
+}