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

BinaryOperator(String, Byte[], BinaryOperatorType) Constructor

Initializes a new BinaryOperator with the specified name of a property whose value the operator compares with the passed value using the given operator type.

Namespace: DevExpress.Data.Filtering

Assembly: DevExpress.XamarinForms.Core.dll

Declaration

public BinaryOperator(
    string propertyName,
    byte[] value,
    BinaryOperatorType type
)

Parameters

Name Type Description
propertyName String

The name of the property to compare with value. It can be a path through object relationships, for example "Employer.Addresses". This value is case-sensitive.

value Byte[]

The byte array to compare with.

type BinaryOperatorType

The comparison operation.

See Also