Click or drag to resize
BroccoliSharp BroTableRemove Method
Removes the element with the specified key from this BroTable.

Namespace: BroccoliSharp
Assembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax
public bool Remove(
	BroValue key
)

Parameters

key
Type: BroccoliSharpBroValue
The key of the element to remove.

Return Value

Type: Boolean
true if the element is successfully removed; otherwise, false. This method also returns false if key was not found in BroTable.

Implements

IDictionaryTKey, TValueRemove(TKey)
Exceptions
ExceptionCondition
ArgumentNullExceptionkey is null.
ObjectDisposedExceptionCannot execute dictionary operation, BroTable is disposed.
Remarks
This is not a native Bro table operation. Function will perform expected task, but for large data sets operation may be expensive.
See Also