IDkmSteppingManagerCallback11a.SetExceptionInFlight Method

Definition

Runtime monitors call this to set or clear a flag on the DkmStepper that can be used by cooperating runtimes to change the behavior of stepping if an exception is current in flight. Called by runtime monitors when an exception is encountered while stepping.

public:
 void SetExceptionInFlight(Microsoft::VisualStudio::Debugger::Stepping::DkmStepper ^ stepper, bool enable);
public void SetExceptionInFlight (Microsoft.VisualStudio.Debugger.Stepping.DkmStepper stepper, bool enable);
abstract member SetExceptionInFlight : Microsoft.VisualStudio.Debugger.Stepping.DkmStepper * bool -> unit
Public Sub SetExceptionInFlight (stepper As DkmStepper, enable As Boolean)

Parameters

stepper
DkmStepper

[In] DkmStepper represents a request to step a thread. It facilitates shared object lifetime between the various runtime debug monitors that participate in stepping.

enable
Boolean

[In] If true, the exception in flight flag is set. If false, it is cleared.

Applies to