Attempts to retrieve the value of the attribute with the specified key
from the collection.
Namespace:
Extreme.Data.R
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public bool TryGetValue(
string key,
out RObject value
)
Public Function TryGetValue (
key As String,
<OutAttribute> ByRef value As RObject
) As Boolean
public:
virtual bool TryGetValue(
String^ key,
[OutAttribute] RObject^% value
) sealed
abstract TryGetValue :
key : string *
value : RObject byref -> bool
override TryGetValue :
key : string *
value : RObject byref -> bool
Parameters
- key
- Type: SystemString
The name of the attribute to retrieve. - value
- Type: Extreme.Data.RRObject
On return, the value of the attribute
that was retrieved.
Return Value
Type:
Boolean if the attribute was found;
otherwise
.
Implements
IDictionaryTKey, TValueTryGetValue(TKey, TValue)
Reference