C# Class System.Linq.Expressions.NewArrayExpression

Inheritance: Expression
Afficher le fichier Open project: dotnet/corefx Class Usage Examples

Méthodes publiques

Méthode Description
Update ( IEnumerable expressions ) : NewArrayExpression

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.

Méthodes protégées

Méthode Description
Accept ( ExpressionVisitor visitor ) : Expression

Dispatches to the specific visit method for this node type.

Private Methods

Méthode Description
Make ( ExpressionType nodeType, Type type, ReadOnlyCollection expressions ) : NewArrayExpression
NewArrayExpression ( Type type, ReadOnlyCollection expressions ) : System.Collections.Generic

Method Details

Accept() protected méthode

Dispatches to the specific visit method for this node type.
protected Accept ( ExpressionVisitor visitor ) : Expression
visitor ExpressionVisitor
Résultat Expression

Update() public méthode

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 expressions ) : NewArrayExpression
expressions IEnumerable The property of the result.
Résultat NewArrayExpression