Click or drag to resize
BroccoliSharp BroSet Constructor (IEnumerableBroValue)
Creates a new BroSet from an existing set of BroValue items.

Namespace: BroccoliSharp
Assembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax
public BroSet(
	IEnumerable<BroValue> values
)

Parameters

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