CriteriaOperator.TryParse(String, Object[]) Method
In This Article
Tries to convert the specified string representation of an expression to its CriteriaOperator equivalent.
Namespace: DevExpress.Data.Filtering
Assembly: DevExpress.Data.v24.2.dll
NuGet Package: DevExpress.Data
#Declaration
public static CriteriaOperator TryParse(
string criteria,
params object[] parameters
)
#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 |
---|---|
Criteria |
A Criteria |
#Remarks
If an exception was raised while trying to convert the specified string, the TryParse method returns null (Nothing in VB).
See Also