diff options
| author | Joshua M. Boniface <joshua@boniface.me> | 2020-12-04 14:53:09 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-04 14:53:09 -0500 |
| commit | 670f7cacc394817b24d5edda4542843967b0cc53 (patch) | |
| tree | 18f2c175d094dc3172af3857730281f704ea11d7 /MediaBrowser.Model/IO/IIsoManager.cs | |
| parent | f07a6c3c3ea13f0f1b60c420a6a73cfb875873aa (diff) | |
| parent | ca5c20c9889f2c279f0b9d80ce776ddc8ee31ad1 (diff) | |
Merge pull request #4651 from crobibero/iso_manager
Remove IIsoMounter and IsoMounter
Diffstat (limited to 'MediaBrowser.Model/IO/IIsoManager.cs')
| -rw-r--r-- | MediaBrowser.Model/IO/IIsoManager.cs | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/MediaBrowser.Model/IO/IIsoManager.cs b/MediaBrowser.Model/IO/IIsoManager.cs deleted file mode 100644 index 299bb0a21..000000000 --- a/MediaBrowser.Model/IO/IIsoManager.cs +++ /dev/null @@ -1,35 +0,0 @@ -#pragma warning disable CS1591 - -using System; -using System.Collections.Generic; -using System.IO; -using System.Threading; -using System.Threading.Tasks; - -namespace MediaBrowser.Model.IO -{ - public interface IIsoManager - { - /// <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="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); - - /// <summary> - /// Adds the parts. - /// </summary> - /// <param name="mounters">The mounters.</param> - void AddParts(IEnumerable<IIsoMounter> mounters); - } -} |
