Table of Contents

Class TermExpression

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

The Class TermExpression represents a term value expression

public class TermExpression : ValueExpression
Inheritance
TermExpression
Inherited Members

Properties

DisplayValue

Gets the value to be shown on the UI page

public object DisplayValue { get; set; }

Property Value

object

Type

Gets the type of the value.

public Type Type { get; }

Property Value

Type

The type.

Value

Gets or sets the value.

public object Value { get; set; }

Property Value

object

The value.

Methods

GetValue()

Gets expression value

public override object GetValue()

Returns

object

The value

ToString()

Converts expression to string

public override string ToString()

Returns

string

String representation of expression

To top