DkmStepper.OnStepComplete(DkmThread, Boolean) Method

Definition

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

Parameters

Thread
DkmThread

[In] The thread the step actually finished on. Normally, this is the same as the thread in DkmStepper, but in some scenarios, it could be different.

HasException
Boolean

[In] Contains true if the source runtime instance can determine that an exception is in flight on the stepping thread. 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