ILicenseService GetFeatureByModuleIds Method CelloSaaS API Documentation
This method is used to get all the feature details for given module ids

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, Feature>> GetFeatureByModuleIds(
	string[] moduleIds
)

Parameters

moduleIds
Type:  System String 
Module Identifiers

Return Value

Type: Dictionary String, Dictionary String, Feature  
Feature details for each modules
Examples

public void GetFeatureByModuleIds()
{
    string[] moduleIds = new string { "User", "AccessControl" }
    ILicenseService licenseService = ServiceLocator.Resolve<ILicenseService>();
    Dictionary<string, Dictionary<string, Feature>> featureDetails = licenseService.GetFeatureByModuleIds(moduleIds);
}
See Also