다음을 통해 공유


AuthoringSink.AutoExpression Method

Adds the span of an expression to an internal list.

Namespace:  Microsoft.VisualStudio.Package
Assemblies:   Microsoft.VisualStudio.Package.LanguageService.9.0 (in Microsoft.VisualStudio.Package.LanguageService.9.0.dll)
  Microsoft.VisualStudio.Package.LanguageService.10.0 (in Microsoft.VisualStudio.Package.LanguageService.10.0.dll)
  Microsoft.VisualStudio.Package.LanguageService (in Microsoft.VisualStudio.Package.LanguageService.dll)

Syntax

‘선언
Public Overridable Sub AutoExpression ( _
    expr As TextSpan _
)
‘사용 방법
Dim instance As AuthoringSink
Dim expr As TextSpan

instance.AutoExpression(expr)
public virtual void AutoExpression(
    TextSpan expr
)
public:
virtual void AutoExpression(
    TextSpan expr
)
abstract AutoExpression : 
        expr:TextSpan -> unit 
override AutoExpression : 
        expr:TextSpan -> unit 
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