Click or drag to resize
BroccoliSharp BroRecordRemove Method (String)
Removes the first occurrence of the specified fieldName from this BroRecord.

Namespace: BroccoliSharp
Assembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax
public bool Remove(
	string fieldName
)

Parameters

fieldName
Type: SystemString
The BroField to remove from this BroRecord.

Return Value

Type: Boolean
true 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
ExceptionCondition
ObjectDisposedExceptionCannot execute list operation, BroRecord is disposed.
ArgumentNullExceptionfieldName is null.
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