AdminConfigurationManagerBaseGetSubDomains Method |
Namespace:
MFiles.VAF.Configuration.AdminConfigurations
Assembly:
MFiles.VAF.Configuration (in MFiles.VAF.Configuration.dll) Version: 21.8.10524.1
Syntaxpublic virtual IEnumerable<ConfigurationDomain> GetSubDomains(
IConfigurationRequestContext context,
DomainNodeLocation nodeLocation,
int maxDepth = 0
)
Public Overridable Function GetSubDomains (
context As IConfigurationRequestContext,
nodeLocation As DomainNodeLocation,
Optional maxDepth As Integer = 0
) As IEnumerable(Of ConfigurationDomain)
public:
virtual IEnumerable<ConfigurationDomain^>^ GetSubDomains(
IConfigurationRequestContext^ context,
DomainNodeLocation^ nodeLocation,
int maxDepth = 0
)
Parameters
- context
- Type: MFiles.VAF.Configuration.AdminConfigurationsIConfigurationRequestContext
The request context that is triggering the command. - nodeLocation
- Type: MFiles.VAF.Configuration.AdminConfigurationsDomainNodeLocation
The the node to trigger the command on. - maxDepth (Optional)
- Type: SystemInt32
Maximum depth to return sub-domain definitions for.
Once the max depth is reached, a source definition will be returned, and MFAdmin
can follow the source to retrieve lower levels of sub domain definitions.
Return Value
Type:
IEnumerableConfigurationDomainDefinitions of the node's subdomains.
See Also