Expression Constructores

Definición

Construye una nueva instancia de Expression.

Sobrecargas

Nombre Description
Expression()

Construye una nueva instancia de Expression.

Expression(ExpressionType, Type)
Obsoletos.
Obsoletos.

Inicializa una nueva instancia de la clase Expression.

Expression()

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

Construye una nueva instancia de Expression.

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

Se aplica a

Expression(ExpressionType, Type)

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

Precaución

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.

Precaución

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.

Inicializa una nueva instancia de la clase Expression.

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);
[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);
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.")>]
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
new System.Linq.Expressions.Expression : System.Linq.Expressions.ExpressionType * Type -> System.Linq.Expressions.Expression
Protected Sub New (nodeType As ExpressionType, type As Type)

Parámetros

nodeType
ExpressionType

que ExpressionType se va a establecer como el tipo de nodo.

type
Type

Type de este Expressionobjeto .

Atributos

Comentarios

Este constructor se llama desde constructores en clases derivadas.

Se aplica a