Skip to main content

JsLogicalExpression

Assembly: ServiceStack.Common.dll
View Source
Declaration
public class JsLogicalExpression : JsExpression, IRawString

Properties

Operator

View Source
Declaration
public JsLogicOperator Operator { get; set; }

Left

View Source
Declaration
public JsToken Left { get; set; }

Right

View Source
Declaration
public JsToken Right { get; set; }

Methods

ToRawString()

View Source
Declaration
public override string ToRawString()
Returns

System.String

Evaluate(ScriptScopeContext)

View Source
Declaration
public override object Evaluate(ScriptScopeContext scope)
Returns

System.Object

Parameters
TypeName
ServiceStack.Script.ScriptScopeContextscope

Equals(JsLogicalExpression)

View Source
Declaration
protected bool Equals(JsLogicalExpression other)
Returns

System.Boolean

Parameters
TypeName
ServiceStack.Script.JsLogicalExpressionother

Equals(Object)

View Source
Declaration
public override bool Equals(object obj)
Returns

System.Boolean

Parameters
TypeName
System.Objectobj

GetHashCode()

View Source
Declaration
public override int GetHashCode()
Returns

System.Int32

ToJsAst()

View Source
Declaration
public override Dictionary<string, object> ToJsAst()
Returns

System.Collections.Generic.Dictionary<System.String,System.Object>

Inherited Methods

ToJsAst()

View Source
Declaration
public abstract Dictionary<string, object> ToJsAst()
Returns

System.Collections.Generic.Dictionary<System.String,System.Object>

ToJsAstType()

View Source
Declaration
public virtual string ToJsAstType()
Returns

System.String

Implements