The debug engine (DE) sends this interface to the session debug manager (SDM) when an instance of the DE is created. (http://msdn.microsoft.com/en-us/library/bb145830.aspx)
Inheritance: AD7AsynchronousEvent, IDebugEngineCreateEvent2
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)
        {
            AD7EngineCreateEvent eventObject = new AD7EngineCreateEvent(engine);

            engine.Callback.Send(eventObject, IID, null, null);
        }
Example #2
0
 public static void Send(AD7Engine engine)
 {
     AD7EngineCreateEvent eventObject = new AD7EngineCreateEvent(engine);
     engine.Callback.Send(eventObject, IID, null, null);
 }