IDkmProcessSnapshotRemovedNotification.OnProcessSnapshotRemoved Method

Definition

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

public:
 void OnProcessSnapshotRemoved(Microsoft::VisualStudio::Debugger::DkmProcess ^ process, Microsoft::VisualStudio::Debugger::DkmProcessSnapshot ^ processSnapshot, Microsoft::VisualStudio::Debugger::DkmEventDescriptor ^ eventDescriptor);
public void OnProcessSnapshotRemoved (Microsoft.VisualStudio.Debugger.DkmProcess process, Microsoft.VisualStudio.Debugger.DkmProcessSnapshot processSnapshot, Microsoft.VisualStudio.Debugger.DkmEventDescriptor eventDescriptor);
abstract member OnProcessSnapshotRemoved : Microsoft.VisualStudio.Debugger.DkmProcess * Microsoft.VisualStudio.Debugger.DkmProcessSnapshot * Microsoft.VisualStudio.Debugger.DkmEventDescriptor -> unit
Public Sub OnProcessSnapshotRemoved (process As DkmProcess, processSnapshot As DkmProcessSnapshot, eventDescriptor As DkmEventDescriptor)

Parameters

process
DkmProcess

[In] DkmProcess represents a target process which is being debugged. The debugger debugs processes, so this is the basic unit of debugging. A DkmProcess can represent a system process or a virtual process such as minidumps.

processSnapshot
DkmProcessSnapshot

[In] The process snapshot object that's removed.

eventDescriptor
DkmEventDescriptor

[In] Describes the event being processed.

Applies to