Click or drag to resize
BroccoliSharp BroVectorInsert Method (Int32, BroValue)
Inserts value in this BroVector at the specified index.

Namespace: BroccoliSharp
Assembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax
public void Insert(
	int index,
	BroValue value
)

Parameters

index
Type: SystemInt32
The zero-based index at which value should be inserted.
value
Type: BroccoliSharpBroValue
The BroValue to insert into this BroVector.

Implements

IListTInsert(Int32, T)
Exceptions
ExceptionCondition
ObjectDisposedExceptionCannot execute list operation, BroVector is disposed.
ArgumentOutOfRangeExceptionindex is not a valid index in this BroVector.
Remarks
This is not a native Bro vector operation. Function will perform expected task, but for large data sets operation may be expensive.
See Also