ILicenseService GetPackageDetails Method CelloSaaS API Documentation
This method is used to get active subscription package details.

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

Dictionary<string, PackageDetails> GetPackageDetails()

Return Value

Type: Dictionary String, PackageDetails 
Active Package Details
Exceptions

ExceptionCondition
System UnauthorizedAccessExceptionThrows UnauthorizedAccessException if user don't have permission for this method
CelloSaaS.ServiceContracts.LicenseManagement LicenseExceptionThrows LicenseException if any errors occurs in module license validate
Examples

public void GetPackageDetails()
{
    ILicenseService licenseService = ServiceLocator.Resolve<ILicenseService>();
    Dictionary<string, PackageDetails> packageDetails = licenseService.GetPackageDetails();
}
See Also