diff options
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 |
