Click or drag to resize
BroccoliSharp BroTableTryGetValue Method (BroValue, BroValue)
Gets the BroValue associated with the specified key.

Namespace: BroccoliSharp
Assembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax
public bool TryGetValue(
	BroValue key,
	out BroValue value
)

Parameters

key
Type: BroccoliSharpBroValue
The BroValue key whose value to get.
value
Type: BroccoliSharpBroValue
When method returns, the BroValue associated with the specified key, if the key is found; otherwise, null. This parameter is passed uninitialized.

Return Value

Type: Boolean
true if this BroTable contains an element with the specified key; otherwise, false.

Implements

IDictionaryTKey, TValueTryGetValue(TKey, TValue)
Exceptions
ExceptionCondition
ArgumentNullExceptionkey is null.
ObjectDisposedExceptionCannot attempt to get value, BroTable is disposed.
See Also