|
BroRecordInsert Method (Int32, BroField) |
Inserts
field in this
BroRecord at the specified
index.
Namespace: BroccoliSharpAssembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax public void Insert(
int index,
BroField field
)
Public Sub Insert (
index As Integer,
field As BroField
)
abstract Insert :
index : int *
field : BroField -> unit
override Insert :
index : int *
field : BroField -> unit
public final void Insert(
int index,
BroField field
)
function Insert(index, field);
Parameters
- index
- Type: SystemInt32
The zero-based index at which field should be inserted. - field
- Type: BroccoliSharpBroField
The BroField to insert into this BroRecord.
Implements
IListTInsert(Int32, 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