Class BinaryExpression

The BinaryExpression class represents an operation with two operands.

Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: EPiServer.Social.Common
Assembly: EPiServer.Social.Common.dll
Version: 1.5.4
Syntax
public abstract class BinaryExpression : FilterExpression

Constructors

BinaryExpression(FilterExpression, FilterExpression)

Constructor

Declaration
protected BinaryExpression(FilterExpression left, FilterExpression right)
Parameters
Type Name Description
FilterExpression left

Left operand in the expression

FilterExpression right

Right operand in the expression

Properties

Left

Gets the left operand in this expression.

Declaration
public FilterExpression Left { get; }
Property Value
Type Description
FilterExpression

Right

Gets the right operand in this expression.

Declaration
public FilterExpression Right { get; }
Property Value
Type Description
FilterExpression

Methods

Equals(Object)

Returns true if the specified object is equivalent to this BinaryExpression, false otherwise.

Declaration
public override bool Equals(object obj)
Parameters
Type Name Description
System.Object obj

Object to compare

Returns
Type Description
System.Boolean

True if the specified object is equivalent to this BinaryExpression, false otherwise

Overrides
System.Object.Equals(System.Object)

Extension Methods

arrow_upward