This interface tells the session debug manager (SDM) that an asynchronous break has been successfully completed. (http://msdn.microsoft.com/en-ca/library/bb146180.aspx)
Inheritance: AD7StoppingEvent, IDebugBreakEvent2
Exemplo n.º 1
0
        public void OnAsyncBreakComplete(AD7Thread thread)
        {
            // This will get called when the engine receives the breakpoint event that is created when the user
            // hits the pause button in vs.
            // Debug.Assert(GDBParser.CurrentThreadId == m_engine.DebuggedProcess.PollThreadId);

            AD7AsyncBreakCompleteEvent eventObject = new AD7AsyncBreakCompleteEvent();
            Send(eventObject, AD7AsyncBreakCompleteEvent.IID, thread);
        }
Exemplo n.º 2
0
        /// <summary>
        /// This will get called when the engine receives the breakpoint event that is created when the user
        /// hits the pause button in VS.
        /// </summary>
        /// <param name="thread"> The thread running in a program. </param>
        public void OnAsyncBreakComplete(AD7Thread thread)
        {
            AD7AsyncBreakCompleteEvent eventObject = new AD7AsyncBreakCompleteEvent();

            Send(eventObject, AD7AsyncBreakCompleteEvent.IID, thread);
        }
Exemplo n.º 3
0
 /// <summary>
 /// This will get called when the engine receives the breakpoint event that is created when the user
 /// hits the pause button in VS.
 /// </summary>
 /// <param name="thread"> The thread running in a program. </param>
 public void OnAsyncBreakComplete(AD7Thread thread)
 {
     AD7AsyncBreakCompleteEvent eventObject = new AD7AsyncBreakCompleteEvent();
     Send(eventObject, AD7AsyncBreakCompleteEvent.IID, thread);
 }