Autodesk Vault ProfessionalVault API

TryGetValue Method

Autodesk.DataManagement.Client.Framework.CurrencyDelegateValueDictionary<KeyType,ValueType>

Gets the value associated with the specified key.

Syntax

public System.bool TryGetValue(
   KeyType key,
   out ValueType value
)
Public Function TryGetValue( _
   ByVal key As KeyType, _
   ByRef value As ValueType _
) As System.Boolean

Parameters

NameDescription
keyThe key whose value to get.
valueWhen this method returns, the value associated with the specified key, if the key is found; otherwise, the default value for the type of the value parameter. This parameter is passed uninitialized.

Return Value

true if the Dictionary contains an element with the specified key; otherwise, false

See Also