IDkmHostingProcessShowNotification Interface

Definition

Interface implemented by components that want to find out when active (non-hidden) debugging of a hosting process (ex: my_app.vshost.exe) begins.

Implementations of this interface may restrict when they are called using a filter defined in their component configuration. The following properties may be used: BaseDebugMonitorId, EngineId, TransportKind.

This API was introduced in Visual Studio 14 RTM (DkmApiVersion.VS14RTM).

public interface class IDkmHostingProcessShowNotification
public interface class IDkmHostingProcessShowNotification
__interface IDkmHostingProcessShowNotification
public interface IDkmHostingProcessShowNotification
type IDkmHostingProcessShowNotification = interface
Public Interface IDkmHostingProcessShowNotification

Methods

OnHostingProcessShow(DkmProcess)

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.

Applies to