Expression Constructors

Definitie

Maakt een nieuw exemplaar van Expression.

Overloads

Name Description
Expression()

Maakt een nieuw exemplaar van Expression.

Expression(ExpressionType, Type)
Verouderd.
Verouderd.

Initialiseert een nieuw exemplaar van de Expression klasse.

Expression()

Bron:
Expression.cs
Bron:
Expression.cs
Bron:
Expression.cs
Bron:
Expression.cs
Bron:
Expression.cs

Maakt een nieuw exemplaar van Expression.

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

Van toepassing op

Expression(ExpressionType, Type)

Bron:
Expression.cs
Bron:
Expression.cs
Bron:
Expression.cs
Bron:
Expression.cs
Bron:
Expression.cs

Let op

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.

Let op

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.

Initialiseert een nieuw exemplaar van de Expression klasse.

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);
[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);
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.")>]
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
new System.Linq.Expressions.Expression : System.Linq.Expressions.ExpressionType * Type -> System.Linq.Expressions.Expression
Protected Sub New (nodeType As ExpressionType, type As Type)

Parameters

nodeType
ExpressionType

De ExpressionType te instellen als het knooppunttype.

type
Type

De Type van deze Expression.

Kenmerken

Opmerkingen

Deze constructor wordt aangeroepen vanuit constructors in afgeleide klassen.

Van toepassing op