Expression Construtores

Definição

Constrói uma nova instância de Expression.

Sobrecargas

Expression()

Constrói uma nova instância de Expression.

Expression(ExpressionType, Type)
Obsoleto.
Obsoleto.

Inicializa uma nova instância da classe Expression.

Expression()

Origem:
Expression.cs
Origem:
Expression.cs
Origem:
Expression.cs

Constrói uma nova instância de Expression.

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

Aplica-se a

Expression(ExpressionType, Type)

Origem:
Expression.cs
Origem:
Expression.cs
Origem:
Expression.cs

Cuidado

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.

Cuidado

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.

Inicializa uma nova instância da 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)

Parâmetros

nodeType
ExpressionType

O ExpressionType para definir como tipo de nó.

type
Type

O Type desse Expression.

Atributos

Comentários

Esse construtor é chamado de construtores em classes derivadas.

Aplica-se a