This method is used to get usage details for modules
Namespace: CelloSaaS.ServiceContracts.LicenseManagementAssembly: CelloSaaS.ServiceContracts (in CelloSaaS.ServiceContracts.dll) Version: 4.3.1.0 (4.3.1.0)
Syntax
Parameters
- moduleIds
- Type: System String
Module Identifiers
Return Value
Type: Dictionary String, Dictionary String, UsageUsage Details with Module
Exceptions
Exception | Condition |
---|---|
CelloSaaS.ServiceContracts.LicenseManagement LicenseException | Throws LicenseException. |
Examples
public void GetUsageByModuleIds() { string[] moduleIds = new string { "User", "AccessControl" } ILicenseService licenseService = ServiceLocator.Resolve<ILicenseService>(); Dictionary<string, Dictionary<string, Usage>> featureDetails = licenseService.GetUsageByModuleIds(moduleIds); }
See Also