internal static void Send(AD7Engine aEngine, AD7Thread aThread) { var xMessage = new AD7LoadCompleteEvent(); aEngine.Callback.Send(xMessage, IID, aThread); }
/// <summary> /// Sends the event. /// </summary> /// <param name="aEngine"> The AD7Engine object that represents the DE. </param> /// <param name="aThread"> The AD7Thread object that represents the thread. </param> internal static void Send(AD7Engine aEngine, AD7Thread aThread) { var xMessage = new AD7LoadCompleteEvent(); aEngine.Callback.Send(xMessage, IID, aThread); }
public void OnLoadComplete(AD7Thread thread) { AD7LoadCompleteEvent eventObject = new AD7LoadCompleteEvent(); Send(eventObject, AD7LoadCompleteEvent.IID, thread); }