This method is used to get all the feature details for given module ids
Namespace: CelloSaaS.ServiceContracts.LicenseManagementAssembly: CelloSaaS.ServiceContracts (in CelloSaaS.ServiceContracts.dll) Version: 4.3.1.0 (4.3.1.0)
Dictionary<string, Dictionary<string, Feature>> GetFeatureByModuleIds(
string[] moduleIds
)
Dictionary<string, Dictionary<string, Feature>> GetFeatureByModuleIds(
string[] moduleIds
)
Function GetFeatureByModuleIds (
moduleIds As String()
) As Dictionary(Of String, Dictionary(Of String, Feature))
Function GetFeatureByModuleIds (
moduleIds As String()
) As Dictionary(Of String, Dictionary(Of String, Feature))
abstract GetFeatureByModuleIds :
moduleIds : string[] -> Dictionary<string, Dictionary<string, Feature>>
abstract GetFeatureByModuleIds :
moduleIds : string[] -> Dictionary<string, Dictionary<string, Feature>>
Parameters
- moduleIds
- Type: System String
Module Identifiers
Return Value
Type:
Dictionary String,
Dictionary String,
Feature Feature details for each modules
public void GetFeatureByModuleIds()
{
string[] moduleIds = new string { "User", "AccessControl" }
ILicenseService licenseService = ServiceLocator.Resolve<ILicenseService>();
Dictionary<string, Dictionary<string, Feature>> featureDetails = licenseService.GetFeatureByModuleIds(moduleIds);
}
public void GetFeatureByModuleIds()
{
string[] moduleIds = new string { "User", "AccessControl" }
ILicenseService licenseService = ServiceLocator.Resolve<ILicenseService>();
Dictionary<string, Dictionary<string, Feature>> featureDetails = licenseService.GetFeatureByModuleIds(moduleIds);
}