Click or drag to resize
BroccoliSharp BroVectorInsert Method (Int32, Object, BroType, String)
Inserts value of type 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,
	Object value,
	BroType type,
	string typeName = null
)

Parameters

index
Type: SystemInt32
The zero-based index at which value should be inserted.
value
Type: SystemObject
The value to insert into this BroVector.
type
Type: BroccoliSharpBroType
The BroType of the value.
typeName (Optional)
Type: SystemString
Optional name of specialized type of value.
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