AuthoringSink.AutoExpression Method

Adds the span of an expression to an internal list.

Namespace:  Microsoft.VisualStudio.Package
Assembly:  Microsoft.VisualStudio.Package.LanguageService (in Microsoft.VisualStudio.Package.LanguageService.dll)

Syntax

'Declaration
Public Overridable Sub AutoExpression ( _
    expr As TextSpan _
)
'Usage
Dim instance As AuthoringSink 
Dim expr As TextSpan

instance.AutoExpression(expr)
public virtual void AutoExpression(
    TextSpan expr
)
public:
virtual void AutoExpression(
    TextSpan expr
)
public function AutoExpression(
    expr : TextSpan
)

Parameters

Remarks

If you want to support expressions in the debugger's Autos window, you must derive a class from the AuthoringSink class and implement this method and the associated internal list. This list can then be used to implement the language service's GetProximityExpressions method. You must supply the method or methods needed to retrieve the contents of your list of expressions from your version of the AuthoringSink class.

The base method does nothing.

.NET Framework Security

See Also

Reference

AuthoringSink Class

AuthoringSink Members

Microsoft.VisualStudio.Package Namespace