Interface IMountPointProvider
Base interface that allows querying the mount points
Namespace:FubarDev.WebDavServer.FileSystem.Mount
Assembly:FubarDev.WebDavServer.dll
Syntax
public interface IMountPointProvider
Properties
| Improve this Doc View SourceMountPoints
Gets all mount points
Declaration
IEnumerable<Uri> MountPoints { get; }
Property Value
| Type | Description |
|---|---|
| IEnumerable<Uri> |
Methods
| Improve this Doc View SourceTryGetMountPoint(Uri, out IFileSystem)
Try to get a mount point for a given path
Declaration
bool TryGetMountPoint([NotNull] Uri path, out IFileSystem destination)
Parameters
| Type | Name | Description |
|---|---|---|
| Uri | path | The path to get the destination file system for |
| IFileSystem | destination | The destination file system |
Returns
| Type | Description |
|---|---|
| Boolean | true when there is a destination file system for a path |