DkmRuntimeBreakpoint.OnHit(DkmThread, Boolean) Method

Definition

Raise a RuntimeBreakpoint 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 OnHit(Microsoft::VisualStudio::Debugger::DkmThread ^ Thread, bool HasException);
public void OnHit (Microsoft.VisualStudio.Debugger.DkmThread Thread, bool HasException);
member this.OnHit : Microsoft.VisualStudio.Debugger.DkmThread * bool -> unit
Public Sub OnHit (Thread As DkmThread, HasException As Boolean)

Parameters

Thread
DkmThread

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

HasException
Boolean

[In] Contains true if the source runtime instance can determine that an exception is in flight on the thread which hit the breakpoint. Currently, only managed runtime instances ever set this. This is used to quickly determine if exception specific logic should apply without making another network round-trip.

Applies to