C# Class ComponentFactory.Quicksilver.Binding.EvalNodeNullCoalescing

EvalNode that represents the ?? conditional.
Inheritance: EvalNode
Show file Open project: ComponentFactory/Quicksilver

Public Methods

Method Description
EvalNodeNullCoalescing ( EvalNode child ) : System

Instantiate a new instance of the EvalNodeNullCoalescing node.

Evaluate ( object thisObject ) : EvalResult

Evalaute this node and return result.

ToString ( ) : string

Human readable version of the algebraic expression.

Method Details

EvalNodeNullCoalescing() public method

Instantiate a new instance of the EvalNodeNullCoalescing node.
public EvalNodeNullCoalescing ( EvalNode child ) : System
child EvalNode Specifies the child node.
return System

Evaluate() public method

Evalaute this node and return result.
public Evaluate ( object thisObject ) : EvalResult
thisObject object Reference to object that is exposed as 'this'.
return EvalResult

ToString() public method

Human readable version of the algebraic expression.
public ToString ( ) : string
return string