This interface is sent by the debug engine (DE) to the session debug manager (SDM) when the program being debugged completes a step into, a step over, or a step out of a line of source code or statement or instruction. (http://msdn.microsoft.com/en-us/library/bb162189.aspx)
Inheritance: IDebugEvent2, IDebugStepCompleteEvent2
Example #1
0
        /// <summary>
        /// Sends the event.
        /// </summary>
        /// <param name="engine"> The AD7Engine object that represents the DE. </param>
        public static void Send(AD7Engine engine)
        {
            var xEvent = new AD7StepCompletedEvent();

            engine.Callback.Send(xEvent, IID, engine.currentThread());
        }
Example #2
0
 public static void Send(AD7Engine engine)
 {
     var xEvent = new AD7StepCompletedEvent();
     engine.Callback.Send(xEvent, IID, engine.currentThread());
 }