C# Class PowerStudio.DebugEngine.Events.ModuleLoadEvent

This interface is sent by the debug engine (DE) to the session debug manager (SDM) when a module is loaded or unloaded.
Inheritance: AsynchronousEvent, IDebugModuleLoadEvent2
Datei anzeigen Open project: IntelliTect/PowerStudio Class Usage Examples

Public Methods

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

Gets the module that is being loaded or unloaded.

ModuleLoadEvent ( DebugModuleBase module, bool isLoading ) : System

Method Details

GetModule() public method

Gets the module that is being loaded or unloaded.
public GetModule ( IDebugModule2 &module, string &debugMessage, int &fIsLoad ) : int
module IDebugModule2 Returns an IDebugModule2 object that represents the module which is loading or unloading.
debugMessage string Returns an optional message describing this event. If this parameter is a null value, no message is requested.
fIsLoad int Nonzero (TRUE) if the module is loading and zero (FALSE) if the module is unloading. If this parameter is a null value, no status is requested.
return int

ModuleLoadEvent() public method

public ModuleLoadEvent ( DebugModuleBase module, bool isLoading ) : System
module DebugModuleBase
isLoading bool
return System