|   | BroRecordInsert Method (Int32, BroValue, String) | 
        
        
        
            Inserts 
value in this 
BroRecord at the specified 
index with specified 
fieldName.
            
 
        Namespace: BroccoliSharpAssembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
 Syntax
Syntaxpublic void Insert(
	int index,
	BroValue value,
	string fieldName = ""
)
Public Sub Insert ( 
	index As Integer,
	value As BroValue,
	Optional fieldName As String = ""
)
member Insert : 
        index : int * 
        value : BroValue * 
        ?fieldName : string 
(* Defaults:
        let _fieldName = defaultArg fieldName ""
*)
-> unit 
public void Insert(
	int index,
	BroValue value,
	String fieldName = ""
)
function Insert(index, value, fieldName);
Parameters
- index
- Type: SystemInt32
 The zero-based index at which value should be inserted.
- value
- Type: BroccoliSharpBroValue
 BroValue to insert into this BroRecord as a field.
- fieldName (Optional)
- Type: SystemString
 Name of field to add to record, can be empty string for BroType.List source.
 Exceptions
Exceptions Remarks
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
See Also