ConditionalExpression.Accept Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Dispatches to the specific visit method for this node type. For example, MethodCallExpression calls the VisitMethodCall.
Assembly: System.Core (in System.Core.dll)
Parameters
- visitor
- Type: System.Linq.Expressions.ExpressionVisitor
The visitor to visit this node with.
This default implementation for Extension nodes calls VisitExtension. Override this method to call into a more specific method on a derived visitor class of the ExpressionVisitor class. However, it should still support unknown visitors by calling VisitExtension.