IVsLanguageInfo Interface
Visual Studio 2010
Retrieves information about a programming or markup language, including language name, associated file extension, and colorizer requirements for code editing.
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
The IVsLanguageInfo type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | GetCodeWindowManager | Allows a language to add adornments to a code editor. |
![]() | GetColorizer | Returns the colorizer. |
![]() | GetFileExtensions | Returns the file extensions belonging to this language. |
![]() | GetLanguageName | Returns the name of the programming language. |
See illustrations of the implementation and/or calling of this interface in the sample Figures Language Service.
Notes to ImplementersImplement this interface to create your language service. This is the primary language service interface and is required for all language services.
Here is a simple example of an implementation of this interface.
using Microsoft.VisualStudio; using Microsoft.VisualStudio.TextManager.Interop; namespace MyLanguagePackage { class MyLanguageService : IVsLanguageInfo { public int GetCodeWindowManager(IVsCodeWindow pCodeWin, out IVsCodeWindowManager ppCodeWinMgr) { // MyCodeWindowManager class implements IVsCodeWindowManager. ppCodeWinMgr = new MyCodeWindowManager(pCodeWin); return VSConstants.S_OK; } public int GetColorizer(IVsTextLines pBuffer out IVsColorizer ppColorizer) { // MyColorizer implements IVsColorizer ppColorizer = new MyColorizer(pBuffer); return VSConstants.S_OK; } public int GetFileExtensions(out string pbstrExtensions) { // This is the same extension the language service was // registered as supporting. pbstrExtensions = ".myext"; return VSConstants.S_OK; } public int GetLanguageName(out string bstrName) { // This is the same name the language service was // registered with. bstrName = "MyLanguage"; return VSConstants.S_OK; } } }
