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

Namespace: BroccoliSharp
Assembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax
public bool Contains(
	BroField field
)

Parameters

field
Type: BroccoliSharpBroField
The BroField to locate in this BroRecord.

Return Value

Type: Boolean
true if field is found in this BroRecord; otherwise, false.

Implements

ICollectionTContains(T)
Remarks
This method performs a linear search - an O(n) operation where n is Count.
See Also