This method is used to deactivate the license package details for the package Identifier.
Namespace: CelloSaaS.BusinessEdition.ServiceProxies.LicenseManagementAssembly: CelloSaaS.BusinessEdition (in CelloSaaS.BusinessEdition.dll) Version: 4.3.1.0 (4.3.1.0)
Syntax
Parameters
- packageId
- Type: System String
Package Identifier(Mandatory)
Exceptions
Exception | Condition |
---|---|
System ArgumentNullException | Throws ArgumentNullException if any mandatory argument is null or empty |
System UnauthorizedAccessException | Throws 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