Expression Costruttori

Definizione

Costruisce una nuova istanza di Expression.

Overload

Expression()

Costruisce una nuova istanza di Expression.

Expression(ExpressionType, Type)
Obsoleti.
Obsoleti.

Inizializza una nuova istanza della classe Expression.

Expression()

Origine:
Expression.cs
Origine:
Expression.cs
Origine:
Expression.cs

Costruisce una nuova istanza di Expression.

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

Si applica a

Expression(ExpressionType, Type)

Origine:
Expression.cs
Origine:
Expression.cs
Origine:
Expression.cs

Attenzione

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.

Attenzione

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.

Inizializza una nuova istanza della 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)

Parametri

nodeType
ExpressionType

ExpressionType da impostare come tipo di nodo.

type
Type

Oggetto Type dell'oggetto Expression.

Attributi

Commenti

Questo costruttore viene chiamato dai costruttori nelle classi derivate.

Si applica a