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

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.Data.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.

The following code snippets (auto-collected from DevExpress Examples) contain references to the Parse(String, Object[]) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also