diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-09-30 18:18:44 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-09-30 18:18:44 -0400 |
| commit | 75dd40a2ea35af4f941d468f99506a7a131e2800 (patch) | |
| tree | f1e040f0317d7522d434557d83092b4db8dd97ae /MediaBrowser.Model/IO/IIsoMounter.cs | |
| parent | a7c8750b52d213ced122bd54c69936fb2379068c (diff) | |
add ability to install pismo
Diffstat (limited to 'MediaBrowser.Model/IO/IIsoMounter.cs')
| -rw-r--r-- | MediaBrowser.Model/IO/IIsoMounter.cs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/MediaBrowser.Model/IO/IIsoMounter.cs b/MediaBrowser.Model/IO/IIsoMounter.cs index 91a045368..6684e7eff 100644 --- a/MediaBrowser.Model/IO/IIsoMounter.cs +++ b/MediaBrowser.Model/IO/IIsoMounter.cs @@ -23,5 +23,29 @@ namespace MediaBrowser.Model.IO /// <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> + /// 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; } } } |
