Interface IMediaMounter
Inherited Members
System.IDisposable.Dispose()
Assembly: MediaBrowser.Model.dll
public interface IMediaMounter : IDisposable
Properties
Declaration
Property Value
| Type |
Description |
| System.String |
|
Methods
Determines whether this instance can mount the specified path.
Declaration
bool CanMount(IFileSystem fileSystem, FileSystemMetadata fileInfo, string container)
Parameters
Returns
| Type |
Description |
| System.Boolean |
|
Mounts the specified media path.
Declaration
Task<MediaMount> Mount(IFileSystem fileSystem, FileSystemMetadata fileInfo, string container, CancellationToken cancellationToken)
Parameters
| Type |
Name |
Description |
| IFileSystem |
fileSystem |
|
| FileSystemMetadata |
fileInfo |
|
| System.String |
container |
|
| System.Threading.CancellationToken |
cancellationToken |
|
Returns
| Type |
Description |
| System.Threading.Tasks.Task<MediaMount> |
|
Extension Methods