Click or drag to resize
BroccoliSharp BroSetRemove Method
Removes the first occurrence of the specified BroValue from this BroSet.

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

Parameters

value
Type: BroccoliSharpBroValue
The BroValue to remove from this BroSet.

Return Value

Type: Boolean
true if value was successfully removed from this BroSet; otherwise, false. This method also returns false if value is not found in the original BroSet.

Implements

ICollectionTRemove(T)
Exceptions
ExceptionCondition
ObjectDisposedExceptionCannot execute set operation, BroSet is disposed.
Remarks
This is not a native Bro set operation. Function will perform expected task, but for large data sets operation may be expensive.
See Also