ContainedLanguageRefreshMode Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Used to specify the recompilation mode for a contained language.
public enum class ContainedLanguageRefreshMode
public enum class ContainedLanguageRefreshMode
enum ContainedLanguageRefreshMode
public enum ContainedLanguageRefreshMode
type ContainedLanguageRefreshMode =
Public Enum ContainedLanguageRefreshMode
- Inheritance
-
ContainedLanguageRefreshMode
Fields
Name | Value | Description |
---|---|---|
CLRM_COMPILEFILE | 1 | Specifies to recompile the file - used when the primary editor replaces the entire buffer and wants a full recompile. |
CLRM_COMPILEPROJECT | 2 | Specifies to recompile the entire project, for example, when the compiler options have changed. |
Remarks
COM Signature
From singlefileeditor.idl:
enum ContainedLanguageRefreshMode {
CLRM_COMPILEFILE = 1,
CLRM_COMPILEPROJECT = 2,
};
These values are passed to the Refresh method in the IVsContainedLanguage interface.