Expression Конструкторы
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Создает новый экземпляр Expression.
Перегрузки
| Имя | Описание |
|---|---|
| Expression() |
Создает новый экземпляр Expression. |
| Expression(ExpressionType, Type) |
Устаревшие.
Устаревшие.
Инициализирует новый экземпляр класса Expression. |
Expression()
- Исходный код:
- Expression.cs
- Исходный код:
- Expression.cs
- Исходный код:
- Expression.cs
- Исходный код:
- Expression.cs
- Исходный код:
- Expression.cs
Создает новый экземпляр Expression.
protected:
Expression();
protected Expression();
Protected Sub New ()
Применяется к
Expression(ExpressionType, Type)
- Исходный код:
- Expression.cs
- Исходный код:
- Expression.cs
- Исходный код:
- Expression.cs
- Исходный код:
- Expression.cs
- Исходный код:
- Expression.cs
Внимание!
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.
Внимание!
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.
Инициализирует новый экземпляр класса 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)
Параметры
- nodeType
- ExpressionType
Значение ExpressionType , заданное как тип узла.
- type
- Type
Из Type этого Expression.
- Атрибуты
Комментарии
Этот конструктор вызывается из конструкторов в производных классах.