CSV Engine Documentation Contents
AldenSystems.CSVEngine
CSV Engine Class Library

Filter.Evaluate Method

Filter class is available in commercial version only.

Evaluates the supplied Row against the conditions defined in the Filter.

[Visual Basic]
Public Function Evaluate( _
ByVal dataRow As Row _
) As Boolean
[C#]
public bool Evaluate(
Row dataRow
);

Parameters

dataRow
The Row to evaluate.

Return Value

True if the Row matches the conditions of the Filter.

Remarks

If an expression has been applied for a column outside the range in the provided Row, a false match will be assumed.

Exceptions

Exception Type Condition
ArgumentNullException Thrown if dataRow is null.

See Also

Filter Class | AldenSystems.CSVEngine Namespace