IDkmEmbeddedBreakpointHitReceived.OnEmbeddedBreakpointHitReceived Method

Definition

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

public:
 void OnEmbeddedBreakpointHitReceived(Microsoft::VisualStudio::Debugger::DkmThread ^ thread, Microsoft::VisualStudio::Debugger::DkmInstructionAddress ^ instructionAddress, bool showAsException, Microsoft::VisualStudio::Debugger::DkmEventDescriptorS ^ eventDescriptor);
public void OnEmbeddedBreakpointHitReceived (Microsoft.VisualStudio.Debugger.DkmThread thread, Microsoft.VisualStudio.Debugger.DkmInstructionAddress instructionAddress, bool showAsException, Microsoft.VisualStudio.Debugger.DkmEventDescriptorS eventDescriptor);
abstract member OnEmbeddedBreakpointHitReceived : Microsoft.VisualStudio.Debugger.DkmThread * Microsoft.VisualStudio.Debugger.DkmInstructionAddress * bool * Microsoft.VisualStudio.Debugger.DkmEventDescriptorS -> unit
Public Sub OnEmbeddedBreakpointHitReceived (thread As DkmThread, instructionAddress As DkmInstructionAddress, showAsException As Boolean, eventDescriptor As DkmEventDescriptorS)

Parameters

thread
DkmThread

[In] DkmThread represents a thread running in the target process.

instructionAddress
DkmInstructionAddress

[In,Optional] The address where the embedded breakpoint was hit.

showAsException
Boolean

[In] If true, the UI will display an exception hit dialog for a breakpoint exception. If false, UI will simply break and the DkmInstructionAddress is not used.

eventDescriptor
DkmEventDescriptorS

[In] Describes the event being processed and provides the ability for a component to suppress this event.

Applies to