LicenseProxy PermanentDeleteLicensePackage Method CelloSaaS API Documentation
This method is used to delete the license package details for the input 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 PermanentDeleteLicensePackage(
	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
Examples

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