VSNDK.DebugEngine.AD7LoadCompleteEvent.Send C# (CSharp) Method

Send() static private method

Sends the event.
static private Send ( AD7Engine aEngine, AD7Thread aThread ) : void
aEngine AD7Engine The AD7Engine object that represents the DE.
aThread AD7Thread The AD7Thread object that represents the thread.
return void
        internal static void Send(AD7Engine aEngine, AD7Thread aThread)
        {
            var xMessage = new AD7LoadCompleteEvent();
            aEngine.Callback.Send(xMessage, IID, aThread);
        }
AD7LoadCompleteEvent