[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]Gets a collection of all the management packs that have been imported into the current management group based on the specified list of management pack identifiers. Namespace: Microsoft.EnterpriseManagement
Assembly: Microsoft.EnterpriseManagement.Core (in microsoft.enterprisemanagement.core.dll)

Usage

Visual Basic
Dim instance As IManagementPackManagement
Dim ids As ICollection(Of Guid)
Dim returnValue As IList(Of ManagementPack)

returnValue = instance.GetManagementPacks(ids)

Syntax

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

Parameters

ids

Type: Guid}

A list of unique identifiers representing management packs.

Return Value

Type: IList A collection of management packs.

Exceptions

Exception type Condition
ArgumentNullException

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

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