CriteriaOperator.TryParse(String, Object[]) Method
Tries to convert the specified string representation of an expression to its CriteriaOperator equivalent.
Namespace: DevExpress.Data.Filtering
Assembly: DevExpress.Data.v25.1.dll
NuGet Package: DevExpress.Data
Declaration
Parameters
| Name | Type | Description |
|---|---|---|
| criteria | String | A String value that represents the expression to convert. |
| parameters | Object[] | The values that are substituted into the expression in place of question mark characters. These parameters can be omitted. |
Returns
| Type | Description |
|---|---|
| CriteriaOperator | A CriteriaOperator equivalent to the expression contained in criteria. |
Remarks
If an exception was raised while trying to convert the specified string, the TryParse method returns null (Nothing in VB).
See Also