Expression Constructeurs

Définition

Construit une nouvelle instance de Expression.

Surcharges

Nom Description
Expression()

Construit une nouvelle instance de Expression.

Expression(ExpressionType, Type)
Obsolète.

Initialise une nouvelle instance de la classe Expression.

Expression()

Construit une nouvelle instance de Expression.

protected:
 Expression();
protected Expression();
Protected Sub New ()

S’applique à

Expression(ExpressionType, Type)

Attention

use a different constructor that does not take ExpressionType. Then override NodeType and Type properties to provide the values that would be specified to this constructor.

Initialise une nouvelle instance de la classe Expression.

protected:
 Expression(System::Linq::Expressions::ExpressionType nodeType, Type ^ type);
protected Expression(System.Linq.Expressions.ExpressionType nodeType, Type type);
[System.Obsolete("use a different constructor that does not take ExpressionType. Then override NodeType and Type properties to provide the values that would be specified to this constructor.")]
protected Expression(System.Linq.Expressions.ExpressionType nodeType, Type type);
new System.Linq.Expressions.Expression : System.Linq.Expressions.ExpressionType * Type -> System.Linq.Expressions.Expression
[<System.Obsolete("use a different constructor that does not take ExpressionType. Then override NodeType and Type properties to provide the values that would be specified to this constructor.")>]
new System.Linq.Expressions.Expression : System.Linq.Expressions.ExpressionType * Type -> System.Linq.Expressions.Expression
Protected Sub New (nodeType As ExpressionType, type As Type)

Paramètres

nodeType
ExpressionType

À ExpressionType définir comme type de nœud.

type
Type

Le Type .Expression

Attributs

Remarques

Ce constructeur est appelé à partir de constructeurs dans les classes dérivées.

S’applique à