Expression Constructeurs

Définition

Construit une nouvelle instance de Expression.

Surcharges

Expression()

Construit une nouvelle instance de Expression.

Expression(ExpressionType, Type)
Obsolète.
Obsolète.

Initialise une nouvelle instance de la classe Expression.

Expression()

Source:
Expression.cs
Source:
Expression.cs
Source:
Expression.cs

Construit une nouvelle instance de Expression.

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

S’applique à

Expression(ExpressionType, Type)

Source:
Expression.cs
Source:
Expression.cs
Source:
Expression.cs

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.

Attention

This constructor has been deprecated. 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);
[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);
[System.Obsolete("This constructor has been deprecated. 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);
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.")>]
new System.Linq.Expressions.Expression : System.Linq.Expressions.ExpressionType * Type -> System.Linq.Expressions.Expression
[<System.Obsolete("This constructor has been deprecated. 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
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

Type de cet objet Expression.

Attributs

Remarques

Ce constructeur est appelé à partir des constructeurs des classes dérivées.

S’applique à