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

CriteriaOperator.ParseList(String, Object[]) 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.Data.Filtering

Assembly: DevExpress.XamarinForms.Core.dll

Declaration

public static CriteriaOperator[] ParseList(
    string criteriaList,
    params object[] parameters
)

Parameters

Name Type Description
criteriaList String

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

parameters Object[]

The values that replace question mark characters in the expression. These parameters can be omitted.

Returns

Type Description
CriteriaOperator[]

An array of CriteriaOperator objects parsed from the specified string.

See Also