CriteriaOperator.Parse(String, out OperandValue[]) Method
Converts the specified string specifying an expression to its CriteriaOperator equivalent.
Namespace: DevExpress.Data.Filtering
Assembly: DevExpress.Core.v21.2.dll
NuGet Package: DevExpress.Uwp.Controls
Declaration
public static CriteriaOperator Parse(
string stringCriteria,
out OperandValue[] criteriaParametersList
)
Parameters
Name | Type | Description |
---|---|---|
stringCriteria | String | A String value that is the expression to convert. |
criteriaParametersList | OperandValue[] | [out] Receives 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
This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
See Also