Skip to main content

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

Converts the specified string into its CriteriaOperators equivalent. Expressions should be divided by a semicolon (';'). Throws an exception if it cannot convert the string to criteria.

Namespace: DevExpress.XamarinForms.Core.Filtering

Assembly: DevExpress.XamarinForms.Core.dll

NuGet Package: DevExpress.XamarinForms.Core

Declaration

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

Parameters

Name Type Description
criteriaList String

The string representation of expressions. Expressions should be divided by a semicolon (';')

criteriaParametersList OperandValue[]

An array of expressions that specify values that replaces question mark characters in the specified expression. These parameters can be omitted.

Returns

Type Description
CriteriaOperator[]

An array of CriteriaOperator objects parsed from the specified string.

See Also