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.
Assembly: System.Core (in System.Core.dll)
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.Booleantrue 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)
Show: