IDriveServiceManagerSetLicense Method
IT Hit WebDAV Classes Reference Sets IT Hit Map WebDAV Drive license.
Namespace:
ITHit.MapWebDAVDrive.ServiceClient
Assembly:
ITHit.MapWebDAVDrive.ServiceClient (in ITHit.MapWebDAVDrive.ServiceClient.dll) Version: 1.3.997.0 (1.3.997.0)
Syntax void SetLicense(
string license
)
Sub SetLicense (
license As String
)
void SetLicense(
String^ license
)
abstract SetLicense :
license : string -> unit
Parameters
- license
- Type: SystemString
License text.
Exceptions Remarks Note that license is required to be set only one time before first API use.
Examples
The following example demonstrates how to set license for IT Hit Map WebDAV Drive using Service API.
string license = "<?xml version='1.0' encoding='utf...
IDriveServiceManager manager = DriveManager.GetManager();
manager.SetLicense(license);
See Also