C# Class VSNDK.DebugEngine.AD7ModuleLoadEvent

This interface is sent by the debug engine (DE) to the session debug manager (SDM) when a module is loaded or unloaded. (http://msdn.microsoft.com/en-ca/library/bb146706.aspx)
Inheritance: AD7AsynchronousEvent, IDebugModuleLoadEvent2
Exibir arquivo Open project: blackberry/VSPlugin Class Usage Examples

Public Methods

Method Description
AD7ModuleLoadEvent ( AD7Module module, bool fLoad ) : System

Constructor.

Private Methods

Method Description
IDebugModuleLoadEvent2 ( IDebugModule2 &module, string &debugMessage, int &fIsLoad ) : int

Gets the module that is being loaded or unloaded. (http://msdn.microsoft.com/en-ca/library/bb161763.aspx)

Send ( AD7Engine engine, AD7Module aModule, bool fLoad ) : void

Sends the event.

Method Details

AD7ModuleLoadEvent() public method

Constructor.
public AD7ModuleLoadEvent ( AD7Module module, bool fLoad ) : System
module 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 System