Debugger Members
Include Protected Members
Include Inherited Members
The Debugger object is used to interrogate and manipulate the state of the debugger and the program being debugged.
The Debugger type exposes the following members.
Methods
Name
Description
Causes the given process to pause its execution so that its current state can be analyzed.
Detaches from all attached programs.
Executes the specified statement. If the TreatAsExpression flag is true, then the string is interpreted as an expression, and output is sent to the Command Window.
Evaluates an expression based on the current stack frame. If the expression can be parsed but not evaluated, an object is returned but will not contain a valid value.
Starts executing the program from the current statement.
Executes the program to the current position of the source file cursor.
Sets the next instruction to be executed, according to the cursor position in the current source file.
Steps into the next function call, if possible.
Steps out of the current function.
Steps over the next function call.
Stops debugging, terminating, or detaching from all attached processes.
Top
Properties
Name
Description
Gets a collection of bound breakpoints that were last simultaneously hit.
Gets the last breakpoint hit.
Gets a collection of breakpoints.
Gets the current mode of the debugger within the context of the integrated development environment (IDE).
Sets or gets the active process.
Sets or gets the active program.
Sets or gets the current stack frame.
Sets or gets the current thread being debugged.
Gets the list of processes currently being debugged.
Gets the top-level extensibility object.
Gets or sets whether expressions are output in hexadecimal or decimal format.
Gets or sets whether expressions are evaluated in hexadecimal or decimal format.
Gets a list of languages that the debugger supports.
Gets the last reason that a program was broken. If the program is running it returns DBG_REASON_NONE.
Gets the list of processes currently running on this machine.
Gets the immediate parent object of a Debugger object.
Top