IDkmBinaryLoadedNotification.OnBinaryLoaded Method

Definition

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

public:
 void OnBinaryLoaded(Microsoft::VisualStudio::Debugger::DkmModuleInstance ^ moduleInstance, System::String ^ path, Microsoft::VisualStudio::Debugger::DkmWorkList ^ workList, Microsoft::VisualStudio::Debugger::DkmEventDescriptorS ^ eventDescriptor);
public void OnBinaryLoaded (Microsoft.VisualStudio.Debugger.DkmModuleInstance moduleInstance, string path, Microsoft.VisualStudio.Debugger.DkmWorkList workList, Microsoft.VisualStudio.Debugger.DkmEventDescriptorS eventDescriptor);
abstract member OnBinaryLoaded : Microsoft.VisualStudio.Debugger.DkmModuleInstance * string * Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.DkmEventDescriptorS -> unit
Public Sub OnBinaryLoaded (moduleInstance As DkmModuleInstance, path As String, 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.

path
String

[In] The full path, relative to the computer running Visual Studio to open the minidump, of the matching binary we were able to find.

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