Język

Expression Konstruktory

Definicja

Tworzy nowe wystąpienie klasy Expression.

Przeciążenia

Nazwa Opis
Expression()

Tworzy nowe wystąpienie klasy Expression.

Expression(ExpressionType, Type)
Przestarzałe.
Przestarzałe.

Inicjuje nowe wystąpienie klasy Expression.

Expression()

Źródło:
Expression.cs
Źródło:
Expression.cs
Źródło:
Expression.cs
Źródło:
Expression.cs
Źródło:
Expression.cs

Tworzy nowe wystąpienie klasy Expression.

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

Dotyczy

Expression(ExpressionType, Type)

Źródło:
Expression.cs
Źródło:
Expression.cs
Źródło:
Expression.cs
Źródło:
Expression.cs
Źródło:
Expression.cs

Uwaga

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.

Uwaga

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.

Inicjuje nowe wystąpienie klasy 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)

Parametry

nodeType
ExpressionType

Wartość ExpressionType , która ma być ustawiona jako typ węzła.

type
Type

Z Type tego Expression.

Atrybuty

Uwagi

Ten konstruktor jest wywoływany z konstruktorów w klasach pochodnych.

Dotyczy