|
BroTableTryGetValue Method (BroValue, BroValue) |
Gets the
BroValue associated with the specified
key.
Namespace: BroccoliSharpAssembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax public bool TryGetValue(
BroValue key,
out BroValue value
)
Public Function TryGetValue (
key As BroValue,
<OutAttribute> ByRef value As BroValue
) As Boolean
abstract TryGetValue :
key : BroValue *
value : BroValue byref -> bool
override TryGetValue :
key : BroValue *
value : BroValue byref -> bool
public final boolean TryGetValue(
BroValue key,
/** @attribute OutAttribute */ /** @ref */BroValue value
)
function TryGetValue(key, 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:
Booleantrue if this
BroTable contains an element with the specified
key; otherwise,
false.
Implements
IDictionaryTKey, TValueTryGetValue(TKey, TValue)Exceptions See Also