Expression Konstruktorer

Definition

Konstruerar en ny instans av Expression.

Överlagringar

Name Description
Expression()

Konstruerar en ny instans av Expression.

Expression(ExpressionType, Type)
Föråldrad.

Initierar en ny instans av Expression klassen.

Expression()

Konstruerar en ny instans av Expression.

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

Gäller för

Expression(ExpressionType, Type)

Varning

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.

Initierar en ny instans av Expression klassen.

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)

Parametrar

nodeType
ExpressionType

Som ExpressionType ska anges som nodtyp.

type
Type

Den Type här Expression.

Attribut

Kommentarer

Konstruktorn anropas från konstruktorer i härledda klasser.

Gäller för