This method is used to get usage details for modules
Namespace: CelloSaaS.BusinessEdition.ServiceProxies.LicenseManagementAssembly: CelloSaaS.BusinessEdition (in CelloSaaS.BusinessEdition.dll) Version: 4.3.1.0 (4.3.1.0)
public static Dictionary<string, Dictionary<string, Usage>> GetUsageByModuleIds(
string[] moduleId
)
public static Dictionary<string, Dictionary<string, Usage>> GetUsageByModuleIds(
string[] moduleId
)
Public Shared Function GetUsageByModuleIds (
moduleId As String()
) As Dictionary(Of String, Dictionary(Of String, Usage))
Public Shared Function GetUsageByModuleIds (
moduleId As String()
) As Dictionary(Of String, Dictionary(Of String, Usage))
static member GetUsageByModuleIds :
moduleId : string[] -> Dictionary<string, Dictionary<string, Usage>>
static member GetUsageByModuleIds :
moduleId : string[] -> Dictionary<string, Dictionary<string, Usage>>
Parameters
- moduleId
- Type: System String
Return Value
Type:
Dictionary String,
Dictionary String,
Usage Usage Details with Module
Exception | Condition |
---|
[!:LicenseException] | Throws LicenseException. |
public void GetUsageByModuleIds()
{
string[] moduleIds = new string { "User", "AccessControl" }
Dictionary<string, Dictionary<string, Usage>> featureDetails = LicenseProxy.GetUsageByModuleIds(moduleIds);
}
public void GetUsageByModuleIds()
{
string[] moduleIds = new string { "User", "AccessControl" }
Dictionary<string, Dictionary<string, Usage>> featureDetails = LicenseProxy.GetUsageByModuleIds(moduleIds);
}