VfsMethodsProvider
Namespace: MJCZone.MediaMatic.Providers
Assembly: MJCZone.MediaMatic
Summary
Provides methods for registering and retrieving vfs method factories.
static public
Contents
Methods (7)
Methods
| Method | Summary |
|---|---|
| RegisterFactory | Registers a custom vfs methods factory. |
| RegisterFactory | Registers a vfs methods factory for a specific provider type. |
| GetMethods | Gets the vfs methods for a given vfs connection. |
| GetType | |
| ToString | |
| Equals | |
| GetHashCode |
RegisterFactory
Registers a custom vfs methods factory.
csharp
void RegisterFactory(string name, IVfsMethodsFactory factory)Parameters
- name (string) - The name of the custom factory.
- factory (IVfsMethodsFactory) - The custom factory to register.
RegisterFactory
Registers a vfs methods factory for a specific provider type.
csharp
void RegisterFactory(VfsProviderType providerType, IVfsMethodsFactory factory)Parameters
- providerType (VfsProviderType) - The provider type.
- factory (IVfsMethodsFactory) - The factory to register.
GetMethods
Gets the vfs methods for a given vfs connection.
csharp
IVfsMethods GetMethods(IVfsConnection vfs)Parameters
- vfs (IVfsConnection) - The vfs connection.
Returns
Type: IVfsMethods
The vfs methods.
GetType
csharp
GetType()ToString
csharp
ToString()Equals
csharp
Equals()GetHashCode
csharp
GetHashCode()