Table of Contents

Class BinaryExpression

Namespace
Dynamicweb.Indexing.Querying.Expressions
Assembly
Dynamicweb.Core.dll

The Class BinaryExpression represents binary expression

public class BinaryExpression : Expression
Inheritance
BinaryExpression
Inherited Members

Properties

Disabled

public bool Disabled { get; set; }

Property Value

bool

Left

Gets or sets the left expression.

public Expression Left { get; set; }

Property Value

Expression

The left expression.

Operator

Gets the operator.

public OperatorType Operator { get; set; }

Property Value

OperatorType

The operator.

Right

Gets or sets the right expression.

public Expression Right { get; set; }

Property Value

Expression

The right expression.

Methods

ToString()

Converts expression to string type

public override string ToString()

Returns

string

String expression in format "(Left Operator Right)"

To top