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

CriteriaOperator.TryParse(String, Object[]) Method

Converts the specified string into its CriteriaOperator equivalent. Returns null if cannot convert the string to a criterion.

Namespace: DevExpress.Data.Filtering

Assembly: DevExpress.XamarinForms.Core.dll

Declaration

public static CriteriaOperator TryParse(
    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