Interface IMediaMounter
Inherited Members
System.IDisposable.Dispose()
Namespace: MediaBrowser.Model.IO
Assembly: MediaBrowser.Model.dll
Syntax
public interface IMediaMounter : IDisposable
Properties
Name
Gets the name.
Declaration
string Name { get; }
Property Value
Type | Description |
---|---|
System. |
The name. |
Methods
CanMount(ReadOnlySpan<Char>, ReadOnlySpan<Char>)
Determines whether this instance can mount the specified path.
Declaration
bool CanMount(ReadOnlySpan<char> mediaPath, ReadOnlySpan<char> container)
Parameters
Type | Name | Description |
---|---|---|
System. |
mediaPath | The media path. |
System. |
container | The container. |
Returns
Type | Description |
---|---|
System. |
|
Mount(ReadOnlyMemory<Char>, ReadOnlyMemory<Char>, CancellationToken)
Mounts the specified media path.
Declaration
Task<IMediaMount> Mount(ReadOnlyMemory<char> mediaPath, ReadOnlyMemory<char> container, CancellationToken cancellationToken)
Parameters
Type | Name | Description |
---|---|---|
System. |
mediaPath | The media path. |
System. |
container | The container. |
System. |
cancellationToken | The cancellation token. |
Returns
Type | Description |
---|---|
System. |
IMediaMount. |
Exceptions
Type | Condition |
---|---|
System. |
mediaPath |
System. |
Unable to create mount. |