ILicenseService GetUsageByModuleIds Method CelloSaaS API Documentation
This method is used to get usage details for modules

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

Dictionary<string, Dictionary<string, Usage>> GetUsageByModuleIds(
	string[] moduleIds
)

Parameters

moduleIds
Type:  System String 
Module Identifiers

Return Value

Type: Dictionary String, Dictionary String, Usage  
Usage Details with Module
Exceptions

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