Click or drag to resize

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
)

Parameters

license
Type: SystemString
License text.
Exceptions
ExceptionCondition
InvalidLicenseExceptionThe license is invalid.
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