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

Наследование: Expression, IArgumentProvider
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
GetArgument ( int index ) : Expression

Gets the argument expression with the specified index.

Update ( IEnumerable arguments ) : NewExpression

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.

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

Метод Описание
NewExpression ( ConstructorInfo constructor, IReadOnlyList arguments, ReadOnlyCollection members ) : System.Collections.Generic

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

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

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

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

Gets the argument expression with the specified index.
public GetArgument ( int index ) : Expression
index int The index of the argument expression to get.
Результат 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 arguments ) : NewExpression
arguments IEnumerable The property of the result.
Результат NewExpression