|
BroTableRemove Method |
Removes the element with the specified
key from this
BroTable.
Namespace: BroccoliSharpAssembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax public bool Remove(
BroValue key
)
Public Function Remove (
key As BroValue
) As Boolean
abstract Remove :
key : BroValue -> bool
override Remove :
key : BroValue -> bool
public final boolean Remove(
BroValue key
)
Parameters
- key
- Type: BroccoliSharpBroValue
The key of the element to remove.
Return Value
Type:
Booleantrue 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 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