This method is used to get all the feature details for given module ids
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, Feature>> GetFeatureByModuleIds(
string[] moduleId
)
public static Dictionary<string, Dictionary<string, Feature>> GetFeatureByModuleIds(
string[] moduleId
)
Public Shared Function GetFeatureByModuleIds (
moduleId As String()
) As Dictionary(Of String, Dictionary(Of String, Feature))
Public Shared Function GetFeatureByModuleIds (
moduleId As String()
) As Dictionary(Of String, Dictionary(Of String, Feature))
static member GetFeatureByModuleIds :
moduleId : string[] -> Dictionary<string, Dictionary<string, Feature>>
static member GetFeatureByModuleIds :
moduleId : string[] -> Dictionary<string, Dictionary<string, Feature>>
Parameters
- moduleId
- Type: System String
Return Value
Type:
Dictionary String,
Dictionary String,
Feature Feature details for each modules
public void GetFeatureByModuleIds()
{
string[] moduleIds = new string { "User", "AccessControl" }
Dictionary<string, Dictionary<string, Feature>> featureDetails = LicenseProxy.GetFeatureByModuleIds(moduleIds);
}
public void GetFeatureByModuleIds()
{
string[] moduleIds = new string { "User", "AccessControl" }
Dictionary<string, Dictionary<string, Feature>> featureDetails = LicenseProxy.GetFeatureByModuleIds(moduleIds);
}