Expression Construtores

Definição

Constrói uma nova instância de Expression.

Sobrecargas

Name Description
Expression()

Constrói uma nova instância de Expression.

Expression(ExpressionType, Type)
Obsoleto.
Obsoleto.

Inicializa uma nova instância da Expression classe.

Expression()

Origem:
Expression.cs
Origem:
Expression.cs
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
Origem:
Expression.cs
Origem:
Expression.cs

Atenção

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.

Atenção

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 Expression classe.

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

O ExpressionType to define como o tipo de nó.

type
Type

O Type de este Expression.

Atributos

Observações

Este construtor é chamado de construtores em classes derivadas.

Aplica-se a