[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]Gets all classes that are defined in this management group based on the collection of identifiers. Namespace: Microsoft.EnterpriseManagement
Assembly: Microsoft.EnterpriseManagement.Core (in microsoft.enterprisemanagement.core.dll)

Usage

Visual Basic
Dim instance As IEntityTypeManagement
Dim ids As ICollection(Of Guid)
Dim returnValue As IList(Of ManagementPackClass)

returnValue = instance.GetClasses(ids)

Syntax

Visual Basic
Function GetClasses ( _
		ids As ICollection(Of Guid) _
) As IList(Of ManagementPackClass)
C#
IList<ManagementPackClass> GetClasses (
		ICollection<Guid> ids
)
C++
IList<ManagementPackClass^>^ GetClasses (
		ICollection<Guid>^ ids
)
J#
IList<ManagementPackClass> GetClasses (
		ICollection<Guid> ids
)
JScript
function GetClasses (
		ids : ICollection<Guid>
) : IList<ManagementPackClass>

Parameters

ids

Type: Guid}

The collection of class identifiers.

Return Value

Type: IList The collection of classes.

Exceptions

Exception type Condition
ArgumentNullException

The ids parameter is a null reference (Nothing in Visual Basic).

ArgumentOutOfRangeException

The ids parameter collection does not contain any items.

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