DebuggerResumeAction Enumeration
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Defines the ways that the debugger can resume its execution after a breakpoint is encountered. This class is introduced in Windows PowerShell 2.0.
Namespace: System.Management.Automation
Assembly: System.Management.Automation (in System.Management.Automation)
Namespace: System.Management.Automation
Assembly: System.Management.Automation (in System.Management.Automation)
| Member name | Description |
|---|---|
| Continue | The debugger continues until another breakpoint is encountered or until there is no more code to examine. The debugger command to start this action is “c”. This field is introduced in Windows PowerShell 2.0. |
| StepInto | The debugger executes the next line of code and then stops. The debugger command to step into the next line of code is “s”. This field is introduced in Windows PowerShell 2.0. |
| StepOut | The debugger steps out of the current function; or up one level if it is in a nested piece of code. The debugger command to step out of the code is “o”. This field is introduced in Windows PowerShell 2.0. |
| StepOver | The debugger executes the next line of code, and steps over the internal code of any functions or invocations. The debugger command to step over code is “v”. This field is introduced in Windows PowerShell 2.0. |
| Stop | The debugger stops execution and the Windows PowerShell runtime exits the debugger. The debugger command to step out of the code is “t”. This field is introduced in Windows PowerShell 2.0. |
Target Platforms
Windows Developer Preview, Windows Server Developer PreviewSend comments about this topic to Microsoft.