[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]Initializes a new instance of the ManagementPack class by loading the ManagementPack object from the specified file path. Namespace: Microsoft.EnterpriseManagement.Configuration
Assembly: Microsoft.EnterpriseManagement.Core (in microsoft.enterprisemanagement.core.dll)

Usage

Visual Basic
Dim filepath As String
Dim storeForReferences As IManagementPackStore

Dim instance As New ManagementPack(filepath, storeForReferences)

Syntax

Visual Basic
Public Sub New ( _
		filepath As String, _
		storeForReferences As IManagementPackStore _
)
C#
public ManagementPack (
		string filepath,
		IManagementPackStore storeForReferences
)
C++
public:
ManagementPack (
		String^ filepath, 
		IManagementPackStore^ storeForReferences
)
J#
public ManagementPack (
		String filepath, 
		IManagementPackStore storeForReferences
)
JScript
public function ManagementPack (
		filepath : String, 
		storeForReferences : IManagementPackStore
)

Parameters

filepath

The file path to load the management pack from.

storeForReferences

The store to load references from. The store is usually represented by a ManagementPackFileStore object when working with management packs in the file system or an EnterpriseManagementGroup object when working with a SystemCenter-based installation.

Platforms

Development Platforms

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

Target Platforms

Windows Server 2008,Windows Server 2003

See Also