Click or drag to resize
BroccoliSharp BroTable Constructor (IDictionaryBroValue, BroValue)
Creates a new BroTable from an existing dictionary of BroValue items.

Namespace: BroccoliSharp
Assembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax
public BroTable(
	IDictionary<BroValue, BroValue> values
)

Parameters

values
Type: System.Collections.GenericIDictionaryBroValue, BroValue
Dictionary of BroValue items.
Exceptions
ExceptionCondition
ArgumentNullExceptionvalues is null.
OutOfMemoryExceptionFailed to create Bro table.
Remarks
First item in values will determine key and value type for the table. If other items do not have the same key and value type as the first item, they will not be added.
See Also