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

FunctionOperator(String, IEnumerable<CriteriaOperator>) Constructor

Initializes a new FunctionOperator instance with the specified custom function name and operands.

Namespace: DevExpress.Data.Filtering

Assembly: DevExpress.XamarinForms.Core.dll

Declaration

public FunctionOperator(
    string customFunctionName,
    IEnumerable<CriteriaOperator> operands
)

Parameters

Name Type Description
customFunctionName String

The custom function name. Note that this function should be registered via the CriteriaOperator.RegisterCustomFunction or CriteriaOperator.RegisterCustomFunctions method.

operands IEnumerable<CriteriaOperator>

A collection of operands that the function manipulates.

See Also