Skip to main content
A newer version of this page is available. .

CriteriaOperator.ParseList(String, out OperandValue[]) Method

Converts the specified string representation of expressions that are divided by a semicolon into their CriteriaOperator equivalents.

Namespace: DevExpress.Data.Filtering

Assembly: DevExpress.Data.v18.2.dll

Declaration

public static CriteriaOperator[] ParseList(
    string criteriaList,
    out OperandValue[] criteriaParametersList
)

Parameters

Name Type Description
criteriaList String

A String value that represents the expressions to convert. The expressions are divided by a semicolon.

criteriaParametersList OperandValue[]

[out] Receives the values that are substituted into the expression in place of question mark characters. These parameters can be omitted.

Returns

Type Description
CriteriaOperator[]

An array of CriteriaOperator equivalents to the expressions contained in criteriaList.

Remarks

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

See Also