Expression Costruttori

Definizione

Costruisce una nuova istanza di Expression.

Overload

Nome Descrizione
Expression()

Costruisce una nuova istanza di Expression.

Expression(ExpressionType, Type)
Obsoleti.

Inizializza una nuova istanza della classe Expression.

Expression()

Costruisce una nuova istanza di Expression.

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

Si applica a

Expression(ExpressionType, Type)

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.

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

Parametri

nodeType
ExpressionType

Oggetto ExpressionType da impostare come tipo di nodo.

type
Type

Oggetto Type di questo Expressionoggetto .

Attributi

Commenti

Questo costruttore viene chiamato dai costruttori nelle classi derivate.

Si applica a