IDictionaryPropertyExtensionsTryGetValueTKey, TItem Method (IDictionaryPropertyTKey, IPropertyTItem, TItem, TKey, IPropertyTItem)

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: 0.22.4.0116
Syntax
public static bool TryGetValue<TKey, TItem>(
	this IDictionaryProperty<TKey, IProperty<TItem>, TItem> dictionaryProperty,
	TKey key,
	out IProperty<TItem> value
)

Parameters

dictionaryProperty
Type: TSD.API.Remoting.Common.PropertiesIDictionaryPropertyTKey, IPropertyTItem, TItem
The dictionary to query
key
Type: TKey
The key to look for
value
Type: TSD.API.Remoting.Common.PropertiesIPropertyTItem
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

Type: Boolean
True 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