|
BroRecordRemove Method (BroField) |
Removes the first occurrence of the specified
field from this
BroRecord.
Namespace: BroccoliSharpAssembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax public bool Remove(
BroField field
)
Public Function Remove (
field As BroField
) As Boolean
abstract Remove :
field : BroField -> bool
override Remove :
field : BroField -> bool
public final boolean Remove(
BroField field
)
Parameters
- field
- Type: BroccoliSharpBroField
The BroField to remove from this BroRecord.
Return Value
Type:
Booleantrue if
field was successfully removed from this
BroRecord; otherwise,
false.
This method also returns
false if
field is not found in the original
BroRecord.
Implements
ICollectionTRemove(T)Exceptions Remarks
This is not a native Bro record operation. Function will perform expected task, but for large data sets operation may be expensive.
See Also