DkmScriptSymbolNextSteppingAction Enum

Definition

Value returned from IDkmScriptSymbolCallback.GetNextSteppingAction which indicates the next action that the script DM should take.

public enum class DkmScriptSymbolNextSteppingAction
public enum class DkmScriptSymbolNextSteppingAction
enum DkmScriptSymbolNextSteppingAction
public enum DkmScriptSymbolNextSteppingAction
type DkmScriptSymbolNextSteppingAction = 
Public Enum DkmScriptSymbolNextSteppingAction
Inheritance
DkmScriptSymbolNextSteppingAction

Fields

CompleteStep 0

Step has landed at non-hidden code which maps to the same statement/line (depending on the IsSteppingByLine value) as where the step was originated.

SkipCurrentMethod 3

Step completed in a hidden method, or the remainder of the method is hidden code. The debug monitor should step out of the method.

SkipMethodCall 2

Step completed at a hidden statement, or at a statement which is still part of the same statement/line (depending on the IsSteppingByLine value) as the StartingInstruction. The debug monitor should step again with a step over (even if the original operation was a step into).

SkipStatement 1

Step completed at a hidden statement, or at a statement which is still part of the same statement/line (depending on the IsSteppingByLine value) as the StartingInstruction. The debug monitor should step again. If it is a performing a step into, the debug monitor should resume with a step into. Otherwise a step over should be performed.

Applies to