LanguageService::OnModeChange Method (DBGMODE)
Visual Studio 2015
Called whenever the debug mode has changed while debugging.
Assembly: Microsoft.VisualStudio.Package.LanguageService.14.0 (in Microsoft.VisualStudio.Package.LanguageService.14.0.dll)
Parameters
- dbgmodeNew
-
Type:
Microsoft.VisualStudio.Shell.Interop::DBGMODE
[in] The new debug mode as specified by a value from the DBGMODE enumeration.
Implements
IVsDebuggerEvents::OnModeChange(DBGMODE)If your language service needs to adjust for different debugging modes then you must derive a class from the LanguageService class and implement this method. Be sure to call the base class version of this method before your implementation.
The base method sets an internal field to the new debug mode value.
Show: