Expression コンストラクター

定義

Expression の新しいインスタンスを作成します。

オーバーロード

Expression()

Expression の新しいインスタンスを作成します。

Expression(ExpressionType, Type)
古い.
古い.

Expression クラスの新しいインスタンスを初期化します。

Expression()

ソース:
Expression.cs
ソース:
Expression.cs
ソース:
Expression.cs

Expression の新しいインスタンスを作成します。

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

適用対象

Expression(ExpressionType, Type)

ソース:
Expression.cs
ソース:
Expression.cs
ソース:
Expression.cs

注意事項

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.

注意事項

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.

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)

パラメーター

nodeType
ExpressionType

ノード型として設定する ExpressionType

type
Type

この TypeExpression

属性

注釈

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

適用対象