IExpressionFilterAttach Method

Allows VisualGDB to replace the given expression with a custom expression provided by the filter.

Definition

Namespace: VisualGDBExpressions
Assembly: VisualGDBExpressions (in VisualGDBExpressions.dll) Version: 5.6.109.1 (5.6.109.4849)
C#
IExpression Attach(
	IExpression expr,
	IExpressionEvaluator evaluator
)

Parameters

expr  IExpression
Specifies the expression that is being filtered.
evaluator  IExpressionEvaluator
Provides an interface that allows the filter implementation to evaluate arbitrary expressions.

Return Value

IExpression
Returns the expression that will be displayed to the user instead of the original one. In the simplest case can be an instance of the StaticExpressionFilter class.

See Also