IVsLanguageContextProvider Interface

Connects context-sensitive help for a language service that uses the Visual Studio core editor. Hooks up context-sensitive help for a language service that uses the Visual Studio core editor.

Namespace:  Microsoft.VisualStudio.TextManager.Interop
Assembly:  Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)

Syntax

'Declaration
<InterfaceTypeAttribute()> _
<GuidAttribute("19404D57-F8E4-42F4-9255-B8F889B0C50C")> _
Public Interface IVsLanguageContextProvider
'Usage
Dim instance As IVsLanguageContextProvider
[InterfaceTypeAttribute()]
[GuidAttribute("19404D57-F8E4-42F4-9255-B8F889B0C50C")]
public interface IVsLanguageContextProvider
[InterfaceTypeAttribute()]
[GuidAttribute(L"19404D57-F8E4-42F4-9255-B8F889B0C50C")]
public interface class IVsLanguageContextProvider
public interface IVsLanguageContextProvider

Remarks

This interface allows the text view to determine when it is time to update context in the Dynamic Help window, and allows the language service to push attributes and keywords to the context bag based on the current context in the editor. At an appropriate time (typically idle time), the language service is called with UpdateLanguageContext if it has implemented IVsLanguageContextProvider. The language service can then push context based on the text buffer, location, and supplemental hint information regarding whether this is a typical idle-time update or is a prelude to the Dynamic Help window handling the F1 key. There is no follow-up call to remove attributes or keywords from the context bag; the language service is responsible for managing the context in an appropriate manner and for not allowing extraneous attributes and keywords to accumulate in the context bag.

In this scenario, a context bag is attached to the default Visual Studio text editor, which is responsible for updating the context bag. When the Dynamic Help window calls Update on the context bag at idle time, the context bag informs the text editor that it needs to update; the text editor subsequently tells the language service that it is time to update and passes a pointer to the text editor's context bag, because, in this scenario, the language service does not have its own context bag. The language service then needs to call UpdateLanguageContext; then, using the pointer to the text editor's context bag, it can add and remove attributes and keywords.

See illustrations of the implementation and/or calling of this interface in the samples Figures Language Serviceand Figures Project.

Notes to Implementers:

Implemented by the language service to provide context to the Visual Studio core editor.

Notes to Callers:

Called by the text editor.

See Also

Reference

IVsLanguageContextProvider Members

Microsoft.VisualStudio.TextManager.Interop Namespace