jellyfin/MediaBrowser.Model/IO/IIsoMounter.cs

52 lines
1.8 KiB
C#
Raw Normal View History

2013-02-21 02:33:05 +01:00
using System;
2013-08-10 03:16:31 +02:00
using System.IO;
2013-02-21 02:33:05 +01:00
using System.Threading;
using System.Threading.Tasks;
2013-08-10 03:16:31 +02:00
namespace MediaBrowser.Model.IO
2013-02-21 02:33:05 +01:00
{
2013-08-10 03:16:31 +02:00
public interface IIsoMounter : IDisposable
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// Mounts the specified iso path.
/// </summary>
/// <param name="isoPath">The iso path.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>IsoMount.</returns>
2013-08-10 03:16:31 +02:00
/// <exception cref="ArgumentNullException">isoPath</exception>
/// <exception cref="IOException">Unable to create mount.</exception>
Task<IIsoMount> Mount(string isoPath, CancellationToken cancellationToken);
2013-02-21 02:33:05 +01:00
/// <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);
2013-10-01 00:18:44 +02:00
/// <summary>
/// Gets a value indicating whether [requires installation].
/// </summary>
/// <value><c>true</c> if [requires installation]; otherwise, <c>false</c>.</value>
bool RequiresInstallation { get; }
/// <summary>
/// Gets a value indicating whether this instance is installed.
/// </summary>
/// <value><c>true</c> if this instance is installed; otherwise, <c>false</c>.</value>
bool IsInstalled { get; }
/// <summary>
/// Installs this instance.
/// </summary>
/// <returns>Task.</returns>
Task Install(CancellationToken cancellationToken);
/// <summary>
/// Gets the name.
/// </summary>
/// <value>The name.</value>
string Name { get; }
2013-02-21 02:33:05 +01:00
}
2013-08-10 03:16:31 +02:00
}