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.XamarinForms.Core.Filtering
Assembly: DevExpress.XamarinForms.Core.dll
NuGet Package: DevExpress.XamarinForms.Core
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