Expression(TDelegate) Properties
Collapse the table of content
Expand the table of content

Expression<TDelegate> Properties

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

The Expression<TDelegate> type exposes the following members.

  NameDescription
Public property Body Gets the body of the lambda expression. (Inherited from LambdaExpression.)
Public property CanReduce Indicates that the node can be reduced to a simpler node. If this returns true, Reduce() can be called to produce the reduced form. (Inherited from Expression.)
Public property Name Gets the name of the lambda expression. (Inherited from LambdaExpression.)
Public property NodeType Returns the node type of this Expression. (Inherited from LambdaExpression.)
Public property Parameters Gets the parameters of the lambda expression. (Inherited from LambdaExpression.)
Public property ReturnType Gets the return type of the lambda expression. (Inherited from LambdaExpression.)
Public property TailCall Gets the value that indicates if the lambda expression will be compiled with the tail call optimization. (Inherited from LambdaExpression.)
Public property Type Gets the static type of the expression that this Expression represents. (Inherited from LambdaExpression.)
Top

Show:
© 2017 Microsoft