LicenseProxy DeleteLicensePackage Method CelloSaaS API Documentation
This method is used to deactivate the license package details for the package Identifier.

Namespace: CelloSaaS.BusinessEdition.ServiceProxies.LicenseManagement
Assembly: CelloSaaS.BusinessEdition (in CelloSaaS.BusinessEdition.dll) Version: 4.3.1.0 (4.3.1.0)
Syntax

public static void DeleteLicensePackage(
	string packageId
)

Parameters

packageId
Type: System String
Package Identifier(Mandatory)
Exceptions

ExceptionCondition
System ArgumentNullExceptionThrows ArgumentNullException if any mandatory argument is null or empty
System UnauthorizedAccessExceptionThrows UnauthorizedAccessException if user don't have permission for this method
[!:LicenseException]Throws LicenseException if any errors occurs in module license validate
[!:DataException]Throws DataException if package already exists.
Examples

public void DeactivateLicensePackage()
{
    string packageId = "A011B120-DD93-DF11-8DEB-001EC9DAB123";
    LicenseProxy.DeleteLicensePackage(packageId);
}
See Also