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

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

Converts the specified string into its CriteriaOperator equivalent. Throws an exception if it cannot convert the string to a criterion.

Namespace: DevExpress.Data.Filtering

Assembly: DevExpress.XamarinForms.Core.dll

Declaration

public static CriteriaOperator Parse(
    string stringCriteria,
    out OperandValue[] criteriaParametersList
)

Parameters

Name Type Description
stringCriteria String

The expression string representation.

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

A CriteriaOperator parsed from the specified string.

See Also