ExpressionVisitor Members
A base class for implementing a custom visitor to traverse the expression tree.Methods
| Name | Description |
|---|---|
| Equals(Object, Object) static | Determines whether the specified object instances are considered equal. Inherited from Object. |
| Equals(Object) | Determines whether the specified object is equal to the current object. Inherited from Object. |
| GetHashCode() | Serves as the default hash function. Inherited from Object. |
| GetType() | Gets the Type of the current instance. Inherited from Object. |
| MemberwiseClone() protected | Creates a shallow copy of the current Object. Inherited from Object. |
| ReferenceEquals(Object, Object) static | Determines whether the specified Object instances are the same instance. Inherited from Object. |
| ToString() | Returns a string that represents the current object. Inherited from Object. |
| Visit(AdditionExpression) | Override this method in a class descendant. It is called when visiting an expression of specific type. |
| Visit(ArrayConstantExpression) | Override this method in a class descendant. It is called when visiting an expression of specific type. |
| Visit(CellErrorReferenceExpression) | Override this method in a class descendant. It is called when visiting an expression of specific type. |
| Visit(CellReferenceExpression) | Override this method in a class descendant. It is called when visiting an expression of specific type. |
| Visit(ConcatenateExpression) | Override this method in a class descendant. It is called when visiting an expression of specific type. |
| Visit(ConstantExpression) | Override this method in a class descendant. It is called when visiting an expression of specific type. |
| Visit(DefinedNameReferenceExpression) | Override this method in a class descendant. It is called when visiting an expression of specific type. |
| Visit(DivisionExpression) | Override this method in a class descendant. It is called when visiting an expression of specific type. |
| Visit(EqualityExpression) | Override this method in a class descendant. It is called when visiting an expression of specific type. |
| Visit(FunctionExpression) | Override this method in a class descendant. It is called when visiting an expression of specific type. |
| Visit(FunctionExternalExpression) | Override this method in a class descendant. It is called when visiting an expression of specific type. |
| Visit(GreaterExpression) | Override this method in a class descendant. It is called when visiting an expression of specific type. |
| Visit(GreaterOrEqualExpression) | Override this method in a class descendant. It is called when visiting an expression of specific type. |
| Visit(InequalityExpression) | Override this method in a class descendant. It is called when visiting an expression of specific type. |
| Visit(LessExpression) | Override this method in a class descendant. It is called when visiting an expression of specific type. |
| Visit(LessOrEqualExpression) | Override this method in a class descendant. It is called when visiting an expression of specific type. |
| Visit(MissingArgumentExpression) | Override this method in a class descendant. It is called when visiting an expression of specific type. |
| Visit(MultiplicationExpression) | Override this method in a class descendant. It is called when visiting an expression of specific type. |
| Visit(PercentExpression) | Override this method in a class descendant. It is called when visiting an expression of specific type. |
| Visit(PowerExpression) | Override this method in a class descendant. It is called when visiting an expression of specific type. |
| Visit(RangeExpression) | Override this method in a class descendant. It is called when visiting an expression of specific type. |
| Visit(RangeIntersectionExpression) | Override this method in a class descendant. It is called when visiting an expression of specific type. |
| Visit(RangeUnionExpression) | Override this method in a class descendant. It is called when visiting an expression of specific type. |
| Visit(SubtractionExpression) | Override this method in a class descendant. It is called when visiting an expression of specific type. |
| Visit(TableReferenceExpression) | Override this method in a class descendant. It is called when visiting an expression of specific type. |
| Visit(UnaryMinusExpression) | Override this method in a class descendant. It is called when visiting an expression of specific type. |
| Visit(UnaryPlusExpression) | Override this method in a class descendant. It is called when visiting an expression of specific type. |
| Visit(UnknownFunctionExpression) | Override this method in a class descendant. It is called when visiting an expression of specific type. |
| VisitBinary(BinaryOperatorExpression) | Override this method in a class descendant. It is called when visiting a binary expression. |
| VisitFunction(FunctionExpressionBase) | Override this method in a class descendant. It is called when visiting a call to function in the expression. |
| VisitUnary(UnaryOperatorExpression) | Override this method in a class descendant. It is called when visiting an unary expression. |
See Also