ContainedLanguageRefreshMode Enumeration
Visual Studio 2015
Used to specify the recompilation mode for a contained language.
Assembly: Microsoft.VisualStudio.TextManager.Interop.8.0 (in Microsoft.VisualStudio.TextManager.Interop.8.0.dll)
| Member name | Description | |
|---|---|---|
| CLRM_COMPILEFILE | Specifies to recompile the file - used when the primary editor replaces the entire buffer and wants a full recompile. | |
| CLRM_COMPILEPROJECT | Specifies to recompile the entire project, for example, when the compiler options have changed. |
From singlefileeditor.idl:
enum ContainedLanguageRefreshMode {
CLRM_COMPILEFILE = 1,
CLRM_COMPILEPROJECT = 2,
};
These values are passed to the Refresh method in the IVsContainedLanguage interface.
Show: