Class IntegerValueExpression

The IntegerValueExpression class represents a integer value in a filter expression.

Inheritance
System.Object
ValueExpression<System.Int64>
IntegerValueExpression
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 class IntegerValueExpression : ValueExpression<long>

Constructors

IntegerValueExpression(Int64)

Constructor

Declaration
public IntegerValueExpression(long value)
Parameters
Type Name Description
System.Int64 value

Integer value represented by this expression

Methods

Accept(FilterExpressionVisitor)

Accepts a visitor capable of interpreting this expression.

Declaration
public override void Accept(FilterExpressionVisitor visitor)
Parameters
Type Name Description
FilterExpressionVisitor visitor

Visitor to be accepted

Overrides
arrow_upward