[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]Tries to get a value from an item in the collection. Namespace: Microsoft.EnterpriseManagement.Configuration
Assembly: Microsoft.EnterpriseManagement.Core (in microsoft.enterprisemanagement.core.dll)

Usage

Visual Basic
Dim instance As ManagementPackReferenceCollection
Dim alias As String
Dim mpreference As ManagementPackReference
Dim returnValue As Boolean

returnValue = instance.TryGetValue(alias, mpreference)

Syntax

Visual Basic
Public Function TryGetValue ( _
		alias As String, _
		<OutAttribute> ByRef mpreference As ManagementPackReference _
) As Boolean
C#
public bool TryGetValue (
		string alias,
		out ManagementPackReference mpreference
)
C++
public:
virtual bool TryGetValue (
		String^ alias, 
		[OutAttribute] ManagementPackReference^% mpreference
) sealed
J#
public final boolean TryGetValue (
		String alias, 
		/** @attribute OutAttribute() */ /** @ref */ ManagementPackReference mpreference
)
JScript

Parameters

alias

The alias of the item to get a value for.

mpreference

The ManagementPackReference object to get.

Return Value

true if you can get the value from the collection; otherwise, false.

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