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

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

Parameters

moduleId
Type:  System String 

Return Value

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

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