diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-08-09 21:16:31 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-08-09 21:16:31 -0400 |
| commit | e0c387446b2562ac6b153d36d357a71e70fa736b (patch) | |
| tree | 4cf750dfbfa6882986f9f1c8e8581a30a6d6977e /MediaBrowser.Common/IO | |
| parent | 3b25b4d5b2030977bdc2deaf9093621c82d50835 (diff) | |
reworked iso manager
Diffstat (limited to 'MediaBrowser.Common/IO')
| -rw-r--r-- | MediaBrowser.Common/IO/IIsoManager.cs | 27 | ||||
| -rw-r--r-- | MediaBrowser.Common/IO/IIsoMount.cs | 22 |
2 files changed, 0 insertions, 49 deletions
diff --git a/MediaBrowser.Common/IO/IIsoManager.cs b/MediaBrowser.Common/IO/IIsoManager.cs deleted file mode 100644 index 8e94189c4a..0000000000 --- a/MediaBrowser.Common/IO/IIsoManager.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System; -using System.Threading; -using System.Threading.Tasks; - -namespace MediaBrowser.Common.IO -{ - public interface IIsoManager : IDisposable - { - /// <summary> - /// Mounts the specified iso path. - /// </summary> - /// <param name="isoPath">The iso path.</param> - /// <param name="cancellationToken">The cancellation token.</param> - /// <param name="visibleToAllProcesses">if set to <c>true</c> [visible to all processes].</param> - /// <returns>IsoMount.</returns> - /// <exception cref="System.ArgumentNullException">isoPath</exception> - /// <exception cref="System.IO.IOException">Unable to create mount.</exception> - Task<IIsoMount> Mount(string isoPath, CancellationToken cancellationToken, bool visibleToAllProcesses = true); - - /// <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); - } -}
\ No newline at end of file diff --git a/MediaBrowser.Common/IO/IIsoMount.cs b/MediaBrowser.Common/IO/IIsoMount.cs deleted file mode 100644 index c6dabc3b9d..0000000000 --- a/MediaBrowser.Common/IO/IIsoMount.cs +++ /dev/null @@ -1,22 +0,0 @@ -using System; - -namespace MediaBrowser.Common.IO -{ - /// <summary> - /// Interface IIsoMount - /// </summary> - public interface IIsoMount : IDisposable - { - /// <summary> - /// Gets or sets the iso path. - /// </summary> - /// <value>The iso path.</value> - string IsoPath { get; } - - /// <summary> - /// Gets the mounted path. - /// </summary> - /// <value>The mounted path.</value> - string MountedPath { get; } - } -}
\ No newline at end of file |
