Click or drag to resize

IDriveServiceManager Interface

IT Hit WebDAV Classes Reference
Provides methods for mounting drives to file system.

Namespace:  ITHit.MapWebDAVDrive.ServiceClient
Assembly:  ITHit.MapWebDAVDrive.ServiceClient (in ITHit.MapWebDAVDrive.ServiceClient.dll) Version: 1.3.997.0 (1.3.997.0)
Syntax
public interface IDriveServiceManager

The IDriveServiceManager type exposes the following members.

Methods
  NameDescription
Public methodCode exampleAddDrive
Mounts new WebDAV drive to local file system.
Public methodGetDrive
Returns settings of the drive mounted to the local file system.
Public methodCode exampleRemoveDrive
Unmounts drive from the local file system.
Public methodCode exampleSetLicense
Sets IT Hit Map WebDAV Drive license.
Top
Examples
The following example demonstrates how to mount a new WebDAV drive using Service API.
DriveSettings driveSettings = new DriveSettings('z', new Uri("http://dav.webdavsystem.com/"), "User1", "pwd");
IDriveServiceManager manager = DriveManager.GetManager();
manager.AddDrive(driveSettings);
See Also