IDkmRuntimeBreakpointConditionFailedNotification Interface

Definition

IDkmRuntimeBreakpointConditionFailedNotification is implemented by components that want to listen for the RuntimeBreakpointConditionFailed event. IDkmRuntimeBreakpointConditionFailedNotification is invoked after all implementations of IDkmRuntimeBreakpointConditionFailedReceived. When this notification is called, the target process is stopped and implementers are able to either inspect the process or cause it to execute in a controlled manner (slip, func-eval).

Provides a notification that a runtime breakpoint was hit, but a breakpoint condition encounters a runtime error.

RuntimeBreakpointConditionFailed 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, EngineId, RuntimeId, SourceId.

This API was introduced in Visual Studio 16 Update 3 (DkmApiVersion.VS16Update3).

public interface class IDkmRuntimeBreakpointConditionFailedNotification
public interface IDkmRuntimeBreakpointConditionFailedNotification
type IDkmRuntimeBreakpointConditionFailedNotification = interface
Public Interface IDkmRuntimeBreakpointConditionFailedNotification

Methods

OnRuntimeBreakpointConditionFailed(DkmRuntimeBreakpoint, DkmThread, String, DkmILFailureReason, DkmEventDescriptorS)

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

Applies to