[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]Reads the specified file into a bundle object. Namespace: Microsoft.EnterpriseManagement.Packaging
Assembly: Microsoft.EnterpriseManagement.Core (in microsoft.enterprisemanagement.core.dll)

Usage

Visual Basic
Dim instance As ManagementPackBundleReader
Dim fileName As String
Dim managementPackStore As ManagementPackFileStore
Dim returnValue As ManagementPackBundle

returnValue = instance.Read(fileName, managementPackStore)

Syntax

Visual Basic
Public MustOverride Function Read ( _
		fileName As String, _
		managementPackStore As ManagementPackFileStore _
) As ManagementPackBundle
C#
public abstract ManagementPackBundle Read (
		string fileName,
		ManagementPackFileStore managementPackStore
)
C++
public:
virtual ManagementPackBundle^ Read (
		String^ fileName, 
		ManagementPackFileStore^ managementPackStore
) abstract
J#
public abstract ManagementPackBundle Read (
		String fileName, 
		ManagementPackFileStore managementPackStore
)
JScript
public abstract function Read (
		fileName : String, 
		managementPackStore : ManagementPackFileStore
) : ManagementPackBundle

Parameters

fileName

The file name.

managementPackStore

The management pack store.

Return Value

Returns ManagementPackBundle. The management pack bundle.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be 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