Expression コンストラクター

定義

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

このExpressionType

属性

注釈

このコンストラクターは、派生クラスのコンストラクターから呼び出されます。

適用対象