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

Send() static private method

Sends the event.
static private Send ( AD7Engine engine, AD7Module aModule, bool fLoad ) : void
engine AD7Engine The AD7Engine object that represents the DE.
aModule AD7Module The IDebugModule2 object that represents the module which is loading or unloading.
fLoad bool onzero (TRUE) if the module is loading and zero (FALSE) if the module is unloading.
return void
        internal static void Send(AD7Engine engine, AD7Module aModule, bool fLoad)
        {
            var eventObject = new AD7ModuleLoadEvent(aModule, fLoad);
            engine.Callback.Send(eventObject, IID, null);
        }