Expression Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
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.