[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]Gets a list of child enumerations of the supplied management pack enumeration identifier. Namespace: Microsoft.EnterpriseManagement
Assembly: Microsoft.EnterpriseManagement.Core (in microsoft.enterprisemanagement.core.dll)

Usage

Visual Basic
Dim instance As IEntityTypeManagement
Dim id As Guid
Dim depth As TraversalDepth
Dim returnValue As IList(Of ManagementPackEnumeration)

returnValue = instance.GetChildEnumerations(id, depth)

Syntax

Visual Basic
Function GetChildEnumerations ( _
		id As Guid, _
		depth As TraversalDepth _
) As IList(Of ManagementPackEnumeration)
C#
IList<ManagementPackEnumeration> GetChildEnumerations (
		Guid id,
		TraversalDepth depth
)
C++
IList<ManagementPackEnumeration^>^ GetChildEnumerations (
		Guid id, 
		TraversalDepth depth
)
J#
IList<ManagementPackEnumeration> GetChildEnumerations (
		Guid id, 
		TraversalDepth depth
)
JScript
function GetChildEnumerations (
		id : Guid, 
		depth : TraversalDepth
) : IList<ManagementPackEnumeration>

Parameters

id

Type: Guid

The unique identifier of the parent enumeration.

depth

Type: TraversalDepth

The depth of retrieval.

Return Value

Type: IList The collection of enumerations.

Thread Safety

This method is thread safe.

Platforms

Development Platforms

Windows Server 2008, Windows Vista, Windows Server 2003, and Windows XP

Target Platforms

Windows Server 2008,Windows Server 2003

See Also