Skip to main content

CriteriaOperator.Parse(String, Object[]) Method

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

Namespace: DevExpress.XamarinForms.Core.Filtering

Assembly: DevExpress.XamarinForms.Core.dll

NuGet Package: DevExpress.XamarinForms.Core

Declaration

public static CriteriaOperator Parse(
    string criteria,
    params object[] parameters
)

Parameters

Name Type Description
criteria String

The expression string representation.

parameters Object[]

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

Returns

Type Description
CriteriaOperator

A CriteriaOperator parsed from the specified string.

See Also