Click or drag to resize
BroccoliSharp BroRecordInsert Method (Int32, BroField)
Inserts field in this BroRecord at the specified index.

Namespace: BroccoliSharp
Assembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax
public void Insert(
	int index,
	BroField 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
ExceptionCondition
ObjectDisposedExceptionCannot execute list operation, BroRecord is disposed.
ArgumentOutOfRangeExceptionindex is not a valid index in this BroRecord.
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