|
BroField Constructor (Object, BroType, String, String) |
Creates a new
BroField from the provided
value,
type and specified field
name.
Namespace: BroccoliSharpAssembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax public BroField(
Object value,
BroType type,
string name = "",
string typeName = null
)
Public Sub New (
value As Object,
type As BroType,
Optional name As String = "",
Optional typeName As String = Nothing
)
new :
value : Object *
type : BroType *
?name : string *
?typeName : string
(* Defaults:
let _name = defaultArg name ""
let _typeName = defaultArg typeName null
*)
-> BroField
public BroField(
Object value,
BroType type,
String name = "",
String typeName = null
)
BroccoliSharp.BroField = function(value, type, name, typeName);
Parameters
- value
- Type: SystemObject
Value of BroValue. - type
- Type: BroccoliSharpBroType
BroType of BroValue. - name (Optional)
- Type: SystemString
The field name for the BroField, can be empty string for BroType.List source. - typeName (Optional)
- Type: SystemString
Optional name of specialized type of value.
Exceptions Remarks See Also