This method is used to get all the feature details for each services
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>> GetFeatureByServiceIds(
string[] serviceIds
)
public static Dictionary<string, Dictionary<string, Feature>> GetFeatureByServiceIds(
string[] serviceIds
)
Public Shared Function GetFeatureByServiceIds (
serviceIds As String()
) As Dictionary(Of String, Dictionary(Of String, Feature))
Public Shared Function GetFeatureByServiceIds (
serviceIds As String()
) As Dictionary(Of String, Dictionary(Of String, Feature))
static member GetFeatureByServiceIds :
serviceIds : string[] -> Dictionary<string, Dictionary<string, Feature>>
static member GetFeatureByServiceIds :
serviceIds : string[] -> Dictionary<string, Dictionary<string, Feature>>
Parameters
- serviceIds
- Type: System String
Service Identifiers
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);
}