C# Класс System.Linq.Expressions.RuntimeVariablesExpression

An expression that provides runtime read/write access to variables. Needed to implement "eval" in dynamic languages. Evaluates to an instance of ILocalVariables at run time.
Наследование: Expression
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Update ( IEnumerable variables ) : RuntimeVariablesExpression

Creates a new expression that is like this one, but using the supplied children. If all of the children are the same, it will return this expression.

Защищенные методы

Метод Описание
Accept ( ExpressionVisitor visitor ) : Expression

Dispatches to the specific visit method for this node type.

Приватные методы

Метод Описание
RuntimeVariablesExpression ( ReadOnlyCollection variables ) : System.Collections.Generic

Описание методов

Accept() защищенный Метод

Dispatches to the specific visit method for this node type.
protected Accept ( ExpressionVisitor visitor ) : Expression
visitor ExpressionVisitor
Результат Expression

Update() публичный Метод

Creates a new expression that is like this one, but using the supplied children. If all of the children are the same, it will return this expression.
public Update ( IEnumerable variables ) : RuntimeVariablesExpression
variables IEnumerable The property of the result.
Результат RuntimeVariablesExpression