Ejemplo n.º 1
0
        /// <summary>
        /// This event handler reports to Visual Studio that the debugger has finished and destroys the program.
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        void Debugger_DebuggingFinished(object sender, EventArgs e)
        {
            bps.Clear();
            _events.ProgramDestroyed(_node);

            UiContextUtilities.DeactivateUiContext(_uiContextCookie);
        }
 /// <summary>
 /// This event handler reports to Visual Studio that the debugger has finished and destroys the program.
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 void Debugger_DebuggingFinished(object sender, EventArgs e)
 {
     bps.Clear();
     Debugger.BreakpointUpdated -= Debugger_BreakpointUpdated;
     _events.ProgramDestroyed(_node);
 }