Expression 생성자

정의

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

오버로드

Name Description
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

특성

설명

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

적용 대상