Share via


DkmThread.OnEmbeddedBreakpointHit(DkmInstructionAddress, Boolean) Method

Definition

Raise a EmbeddedBreakpointHit event. Components which implement the event sink interface will receive the event notification. This method will enqueue the event and control will immediately return to the caller.

public:
 void OnEmbeddedBreakpointHit(Microsoft::VisualStudio::Debugger::DkmInstructionAddress ^ InstructionAddress, bool ShowAsException);
public:
 void OnEmbeddedBreakpointHit(Microsoft::VisualStudio::Debugger::DkmInstructionAddress ^ InstructionAddress, bool ShowAsException);
void OnEmbeddedBreakpointHit(Microsoft::VisualStudio::Debugger::DkmInstructionAddress const & InstructionAddress, bool ShowAsException);
public void OnEmbeddedBreakpointHit (Microsoft.VisualStudio.Debugger.DkmInstructionAddress InstructionAddress, bool ShowAsException);
public void OnEmbeddedBreakpointHit (Microsoft.VisualStudio.Debugger.DkmInstructionAddress? InstructionAddress, bool ShowAsException);
member this.OnEmbeddedBreakpointHit : Microsoft.VisualStudio.Debugger.DkmInstructionAddress * bool -> unit
Public Sub OnEmbeddedBreakpointHit (InstructionAddress As DkmInstructionAddress, ShowAsException As Boolean)

Parameters

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.

Applies to