IDkmHostingProcessShowNotification.OnHostingProcessShow(DkmProcess) Method

Definition

This notification is called for hosting processes (processes that have DkmProcess.StartMethod == DkmStartMethod.AttachForHostingLaunch) when the user invokes an action that causes the debugger to begin active debugging of the process. The debugger will begin background debugging the hosting process soon after the solution opens. This notification gives components a chance to take some action just before active debugging begins.

public:
 void OnHostingProcessShow(Microsoft::VisualStudio::Debugger::DkmProcess ^ process);
public void OnHostingProcessShow (Microsoft.VisualStudio.Debugger.DkmProcess process);
abstract member OnHostingProcessShow : Microsoft.VisualStudio.Debugger.DkmProcess -> unit
Public Sub OnHostingProcessShow (process As DkmProcess)

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.

Applies to