Class ValueExpression<T>

The ValueExpression class serves as the basis for expressions representing values of some specified data type in filter expressions.

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 ValueExpression<T> : ValueExpression
Type Parameters
Name Description
T

Data type of value to be represented

Constructors

ValueExpression(T)

Constructor

Declaration
protected ValueExpression(T value)
Parameters
Type Name Description
T value

Value represented by this expression

Properties

Value

Gets the value represented by this expression.

Declaration
public T Value { get; }
Property Value
Type Description
T

Methods

Equals(Object)

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

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

Object to be compared

Returns
Type Description
System.Boolean

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

Overrides
System.Object.Equals(System.Object)
arrow_upward