|
BroVectorInsert Method (Int32, Object, BroType, String) |
Inserts
value of
type in this
BroVector at the specified
index.
Namespace: BroccoliSharpAssembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax public void Insert(
int index,
Object value,
BroType type,
string typeName = null
)
Public Sub Insert (
index As Integer,
value As Object,
type As BroType,
Optional typeName As String = Nothing
)
member Insert :
index : int *
value : Object *
type : BroType *
?typeName : string
(* Defaults:
let _typeName = defaultArg typeName null
*)
-> unit
public void Insert(
int index,
Object value,
BroType type,
String typeName = null
)
function Insert(index, value, type, typeName);
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 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