Click or drag to resize
BroccoliSharp BroRecordContains Method (String)
Determines whether this BroRecord contains the specified fieldName.

Namespace: BroccoliSharp
Assembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax
public bool Contains(
	string fieldName
)

Parameters

fieldName
Type: SystemString
The BroField to locate in this BroRecord.

Return Value

Type: Boolean
true if fieldName is found in this BroRecord; otherwise, false.
Exceptions
ExceptionCondition
ArgumentNullExceptionfieldName is null.
Remarks
This method performs a linear search - an O(n) operation where n is Count.
See Also