 | HierarchicalAttributeTableTryGetValue Method |
Tries to retrieve the value the passed key is mapped to within this
attribute table. If the key can't be found, the parents of this table are
checked, in order.
Namespace: Slash.Collections.AttributeTablesAssembly: Slash.Collections (in Slash.Collections.dll) Version: 1.0.6018.40177
Syntaxpublic bool TryGetValue(
Object key,
out Object value
)
Public Function TryGetValue (
key As Object,
<OutAttribute> ByRef value As Object
) As Boolean
public:
virtual bool TryGetValue(
Object^ key,
[OutAttribute] Object^% value
) sealed
abstract TryGetValue :
key : Object *
value : Object byref -> bool
override TryGetValue :
key : Object *
value : Object byref -> bool
Parameters
- key
- Type: SystemObject
Key to retrieve the value of. - value
- Type: SystemObject
Retrieved value.
Return Value
Type:
Booleantrue if a value was found, and false otherwise.
Implements
IAttributeTableTryGetValue(Object, Object)
See Also