Expression Konstruktory
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Tworzy nowe wystąpienie klasy Expression.
Przeciążenia
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
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
Przestroga
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.
Przestroga
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.
Inicjuje nowe wystąpienie klasy 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)
Parametry
- nodeType
- ExpressionType
Element ExpressionType do ustawienia jako typ węzła.
- type
- Type
Element Type z tego Expression.
- Atrybuty
Uwagi
Ten konstruktor jest wywoływany z konstruktorów w klasach pochodnych.