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

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

public static Dictionary<string, Dictionary<string, Usage>> GetUsageByModuleIds(
	string[] moduleId
)

Parameters

moduleId
Type:  System String 

Return Value

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

ExceptionCondition
[!:LicenseException]Throws LicenseException.
Examples

public void GetUsageByModuleIds()
{
    string[] moduleIds = new string { "User", "AccessControl" }
    Dictionary<string, Dictionary<string, Usage>> featureDetails = LicenseProxy.GetUsageByModuleIds(moduleIds);
}
See Also