Expression Konstruktory

Definice

Vytvoří novou instanci .Expression

Přetížení

Name Description
Expression()

Vytvoří novou instanci .Expression

Expression(ExpressionType, Type)
Zastaralé.
Zastaralé.

Inicializuje novou instanci Expression třídy.

Expression()

Zdroj:
Expression.cs
Zdroj:
Expression.cs
Zdroj:
Expression.cs
Zdroj:
Expression.cs
Zdroj:
Expression.cs

Vytvoří novou instanci .Expression

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

Platí pro

Expression(ExpressionType, Type)

Zdroj:
Expression.cs
Zdroj:
Expression.cs
Zdroj:
Expression.cs
Zdroj:
Expression.cs
Zdroj:
Expression.cs

Upozornění

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.

Upozornění

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.

Inicializuje novou instanci Expression třídy.

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)

Parametry

nodeType
ExpressionType

Nastavení ExpressionType jako typ uzlu.

type
Type

O Type tomhle Expression.

Atributy

Poznámky

Tento konstruktor je volána z konstruktorů v odvozených třídách.

Platí pro