Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 3.5
Expression Class
 NodeType Property
Collapse All/Expand All Collapse All
This page is specific to
Microsoft Visual Studio 2008/.NET Framework 3.5

Other versions are also available for the following:
.NET Framework Class Library
Expression..::.NodeType Property

Gets the node type of this Expression.

Namespace:  System.Linq.Expressions
Assembly:  System.Core (in System.Core.dll)
Visual Basic (Declaration)
Public ReadOnly Property NodeType As ExpressionType
Visual Basic (Usage)
Dim instance As Expression
Dim value As ExpressionType

value = instance.NodeType
C#
public ExpressionType NodeType { get; }
Visual C++
public:
property ExpressionType NodeType {
    ExpressionType get ();
}
JScript
public function get NodeType () : ExpressionType

Property Value

Type: System.Linq.Expressions..::.ExpressionType
One of the ExpressionType values.

The NodeType property provides a more specialized description of an Expression than just its derived type. For example, a BinaryExpression can be used to represent many different kinds of binary expressions, such as a division operation or a "greater than" operation. The NodeType property would describe these binary expressions as Divide and GreaterThan, respectively.

The static CLR type of the expression that the Expression object represents is represented by the Type property.

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use | Trademarks | Privacy Statement
Page view tracker