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