|
BroRecordRemove Method (String) |
Removes the first occurrence of the specified
fieldName from this
BroRecord.
Namespace: BroccoliSharpAssembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax public bool Remove(
string fieldName
)
Public Function Remove (
fieldName As String
) As Boolean
member Remove :
fieldName : string -> bool
public boolean Remove(
String fieldName
)
function Remove(fieldName);
Parameters
- fieldName
- Type: SystemString
The BroField to remove from this BroRecord.
Return Value
Type:
Booleantrue if
fieldName was successfully removed from this
BroRecord; otherwise,
false.
This method also returns
false if
fieldName is not found in the original
BroRecord.
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