Expression 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
의 새 인스턴스를 생성합니다 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
- 특성
설명
이 생성자는 파생 클래스의 생성자에서 호출됩니다.