dbgExecutionAction Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies an action to take in a debug session.
public enum class dbgExecutionAction
public enum class dbgExecutionAction
enum dbgExecutionAction
[System.Runtime.InteropServices.Guid("77940E85-BCE0-443D-8B77-F5BD841A211E")]
public enum dbgExecutionAction
[<System.Runtime.InteropServices.Guid("77940E85-BCE0-443D-8B77-F5BD841A211E")>]
type dbgExecutionAction =
Public Enum dbgExecutionAction
- Inheritance
-
dbgExecutionAction
- Attributes
Fields
dbgExecutionActionDefault | 1 | Perform the default execution action |
dbgExecutionActionGo | 2 | Start execution. |
dbgExecutionActionRunToCursor | 7 | Continue execution, stopping at the cursor. |
dbgExecutionActionStepInto | 4 | Step into the next function. |
dbgExecutionActionStepOut | 5 | Step out of the current function. |
dbgExecutionActionStepOver | 6 | Step over the next function |
dbgExecutionActionStopDebugging | 3 | Stop debugging. |