Click or drag to resize
BroccoliSharp BroTableTryGetValue Method (Object, BroType, BroValue, String)
Gets the BroValue associated with the specified key of keyType.

Namespace: BroccoliSharp
Assembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax
public bool TryGetValue(
	Object key,
	BroType keyType,
	out BroValue value,
	string keyTypeName = null
)

Parameters

key
Type: SystemObject
The key whose value to get.
keyType
Type: BroccoliSharpBroType
The BroType of the key.
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.
keyTypeName (Optional)
Type: SystemString
Optional name of specialized type of key.

Return Value

Type: Boolean
true if this BroTable contains an element with the specified key; otherwise, false.
Exceptions
ExceptionCondition
ObjectDisposedExceptionCannot attempt to get value, BroTable is disposed.
See Also