IDkmModuleInstanceLoadNotification.OnModuleInstanceLoad Method

Definition

OnModuleInstanceLoad is invoked as part of event processing. See interface definition for more information.

public:
 void OnModuleInstanceLoad(Microsoft::VisualStudio::Debugger::DkmModuleInstance ^ moduleInstance, Microsoft::VisualStudio::Debugger::DkmWorkList ^ workList, Microsoft::VisualStudio::Debugger::DkmEventDescriptorS ^ eventDescriptor);
public void OnModuleInstanceLoad (Microsoft.VisualStudio.Debugger.DkmModuleInstance moduleInstance, Microsoft.VisualStudio.Debugger.DkmWorkList workList, Microsoft.VisualStudio.Debugger.DkmEventDescriptorS eventDescriptor);
abstract member OnModuleInstanceLoad : Microsoft.VisualStudio.Debugger.DkmModuleInstance * Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.DkmEventDescriptorS -> unit
Public Sub OnModuleInstanceLoad (moduleInstance As DkmModuleInstance, workList As DkmWorkList, eventDescriptor As DkmEventDescriptorS)

Parameters

moduleInstance
DkmModuleInstance

[In] The Module Instance class represent a code bundle (ex: dll or exe) which is loaded into a particular process at a particular location. Module Instance objects are 1:1 with the execution environment's notion of a code bundle. For example, in native code, Module Instance objects are 1:1 with base address.

workList
DkmWorkList

WorkList to append additional event processing work to. This work list will begin execution after all listeners have been notifiied. The event will not finish until after the work list fully executes.

eventDescriptor
DkmEventDescriptorS

[In] Describes the event being processed and provides the ability for a component to suppress this event.

Applies to