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

Represents an unconditional jump. This includes return statements, break and continue statements, and other jumps.
Наследование: Expression
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
Update ( LabelTarget target, Expression value ) : GotoExpression

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.

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

Метод Описание
GotoExpression ( GotoExpressionKind kind, LabelTarget target, Expression value, Type type ) : System.Diagnostics

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

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 ( LabelTarget target, Expression value ) : GotoExpression
target LabelTarget The property of the result.
value Expression The property of the result.
Результат GotoExpression