IDictionary(String, Object).TryGetValue Method

ExpandoObject.IDictionary<String, Object>.TryGetValue Method

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Gets the value associated with the specified key.

Namespace:  System.Dynamic
Assembly:  System.Core (in System.Core.dll)

bool IDictionary<string, Object>.TryGetValue(
	string key,
	out Object value
)

Parameters

key
Type: System.String
The key of the value to get.
value
Type: System.Object %
When this method returns, contains the value associated with the specified key, if the key is found; otherwise, contains the default value for the type of the value parameter. This parameter is passed uninitialized.

Return Value

Type: System.Boolean
true if the object that implements IDictionary<TKey, TValue> contains an element that has the specified key; otherwise, false.

Implements

IDictionary<TKey, TValue>.TryGetValue(TKey, TValue)

Windows Phone OS

Supported in: 8.1, 8.0

Show:
© 2017 Microsoft