IDkmDataBreakpointHitReceived Interface

Definition

IDkmDataBreakpointHitReceived is implemented by components that want to listen for the DataBreakpointHit event. IDkmDataBreakpointHitReceived is invoked before IDkmDataBreakpointHitNotification. From within this notification, it is not possible to cause the target process to execute (no func-eval, no slipping).

Provides a notification that a pending breakpoint was hit, with extra data breakpoint information. The process is now stopped with additional information.

DataBreakpointHit events can be suppressed by calling DkmEventDescriptorS.Suppress().

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, CompilerVendorId, EngineId, LanguageId, SourceId.

This API was introduced in Visual Studio 16 RTM (DkmApiVersion.VS16RTM).

public interface class IDkmDataBreakpointHitReceived
public interface IDkmDataBreakpointHitReceived
type IDkmDataBreakpointHitReceived = interface
Public Interface IDkmDataBreakpointHitReceived

Methods

OnDataBreakpointHitReceived(DkmBoundBreakpoint, DkmThread, Boolean, String, DkmEventDescriptorS)

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

Applies to