Expression 생성자

정의

Expression의 새 인스턴스를 생성합니다.

오버로드

Expression()

Expression의 새 인스턴스를 생성합니다.

Expression(ExpressionType, Type)
사용되지 않음.
사용되지 않음.

Expression 클래스의 새 인스턴스를 초기화합니다.

Expression()

Source:
Expression.cs
Source:
Expression.cs
Source:
Expression.cs

Expression의 새 인스턴스를 생성합니다.

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

적용 대상

Expression(ExpressionType, Type)

Source:
Expression.cs
Source:
Expression.cs
Source:
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입니다.

특성

설명

이 생성자는 파생 클래스의 생성자에서 호출됩니다.

적용 대상