C# Class dotless.Core.engine.Variable

Inheritance: Property, IEvaluatable, IReferenceableNode
Mostrar archivo Open project: chrisjowen/nLess

Protected Properties

Property Type Description
Declaration bool

Public Methods

Method Description
Evaluate ( ) : INode

Evaluates the variables value i.e. @color: #fff +1;

Only evaluates first time, next time will just return last evaluation

ToCss ( ) : string
ToString ( ) : string
Variable ( string key ) : System.Collections
Variable ( string key, IEnumerable value ) : System.Collections
Variable ( string key, IEnumerable value, ElementBlock parent ) : System.Collections
Variable ( string key, INode value ) : System.Collections
Variable ( string key, INode value, ElementBlock parent ) : System.Collections

Method Details

Evaluate() public method

Evaluates the variables value i.e. @color: #fff +1;
Only evaluates first time, next time will just return last evaluation
public Evaluate ( ) : INode
return INode

ToCss() public method

public ToCss ( ) : string
return string

ToString() public method

public ToString ( ) : string
return string

Variable() public method

public Variable ( string key ) : System.Collections
key string
return System.Collections

Variable() public method

public Variable ( string key, IEnumerable value ) : System.Collections
key string
value IEnumerable
return System.Collections

Variable() public method

public Variable ( string key, IEnumerable value, ElementBlock parent ) : System.Collections
key string
value IEnumerable
parent ElementBlock
return System.Collections

Variable() public method

public Variable ( string key, INode value ) : System.Collections
key string
value INode
return System.Collections

Variable() public method

public Variable ( string key, INode value, ElementBlock parent ) : System.Collections
key string
value INode
parent ElementBlock
return System.Collections

Property Details

Declaration protected_oe property

protected bool Declaration
return bool