DkmModuleInstance.OnSymbolsUpdated(DkmModule) Method

Definition

Raise a ModuleSymbolsUpdated event. Components which implement the event sink interface will receive the event notification. Control will return once all components have been notified.

public:
 void OnSymbolsUpdated(Microsoft::VisualStudio::Debugger::Symbols::DkmModule ^ Module);
public void OnSymbolsUpdated (Microsoft.VisualStudio.Debugger.Symbols.DkmModule Module);
member this.OnSymbolsUpdated : Microsoft.VisualStudio.Debugger.Symbols.DkmModule -> unit
Public Sub OnSymbolsUpdated (Module As DkmModule)

Parameters

Module
DkmModule

[In] The DkmModule class represents a code bundle (ex: dll or exe) which is or once was loaded into one or more processes. The DkmModule class is the central object to the symbol APIs, and is 1:1 with the symbol handler's notation of what is loaded. If a code bundle loads into three different processes (or the same process but with three different base addresses or three different app domains) but the symbol handler thinks of all of these as being identical, there will be only one module object.

Applies to