RAttributeCollection.TryGetValue Method

Attempts to retrieve the value of the attribute with the specified key from the collection.

Definition

Namespace: Extreme.Data.R
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0
C#
public bool TryGetValue(
	string key,
	out RObject value
)

Parameters

key  String
The name of the attribute to retrieve.
value  RObject
On return, the value of the attribute that was retrieved.

Return Value

Boolean
true if the attribute was found; otherwise false.

Implements

IDictionary<TKey, TValue>.TryGetValue(TKey, TValue)

See Also