Expression.NodeType Property
Gets the node type of this Expression.
Namespace: System.Linq.Expressions
Assembly: System.Core (in System.Core.dll)
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.
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.