|
BroRecordContains Method (String) |
Determines whether this
BroRecord contains the specified
fieldName.
Namespace: BroccoliSharpAssembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax public bool Contains(
string fieldName
)
Public Function Contains (
fieldName As String
) As Boolean
member Contains :
fieldName : string -> bool
public boolean Contains(
String fieldName
)
function Contains(fieldName);
Parameters
- fieldName
- Type: SystemString
The BroField to locate in this BroRecord.
Return Value
Type:
Booleantrue if
fieldName is found in this
BroRecord; otherwise,
false.
Exceptions Remarks
This method performs a linear search - an O(n) operation where n is
Count.
See Also