IDictionary |
Attempts to obtain a value associated with given key from this dictionary
Namespace: TSD.API.Remoting.Common.Properties
Assembly: TSD.API.Remoting (in TSD.API.Remoting.dll) Version: 23.1.0.154
Syntax
public static bool TryGetValue<TKey, TItem>( this IDictionaryProperty<TKey, IProperty<TItem>, TItem> dictionaryProperty, TKey key, out IProperty<TItem> value )
Parameters
- dictionaryProperty IDictionaryPropertyTKey, IPropertyTItem, TItem
- The dictionary to query
- key TKey
- The key to look for
- value IPropertyTItem
- The resulting value associated with given key
Type Parameters
- TKey
- The type of keys used to access the item wrappers stored in the dictionary
- TItem
- The type of items stored in the wrappers in the dictionary
Return Value
BooleanTrue in case the given key is present in the dictionary and the value has been retrieved; false otherwise
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IDictionaryPropertyTKey, IPropertyTItem, TItem. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).See Also