Expression コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
Expressionの新しいインスタンスを構築します。
オーバーロード
| 名前 | 説明 |
|---|---|
| Expression() |
Expressionの新しいインスタンスを構築します。 |
| Expression(ExpressionType, Type) |
古い.
Expression クラスの新しいインスタンスを初期化します。 |
Expression()
Expressionの新しいインスタンスを構築します。
protected:
Expression();
protected Expression();
Protected Sub New ()
適用対象
Expression(ExpressionType, Type)
注意事項
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);
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);
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
Protected Sub New (nodeType As ExpressionType, type As Type)
パラメーター
- nodeType
- ExpressionType
ノード の種類として設定する ExpressionType 。
- type
- Type
このExpressionのType。
- 属性
注釈
このコンストラクターは、派生クラスのコンストラクターから呼び出されます。