This topic has not yet been rated - Rate this topic

Debugger2 Members 

The Debugger2 object is used to interrogate and manipulate the state of the debugger and the program being debugged. The Debugger2 object supersedes the Debugger object.

The following tables list the members exposed by the Debugger2 type.

  Name Description
Public property AllBreakpointsLastHit Gets a collection of bound breakpoints that were last simultaneously hit. 
Public property BreakpointLastHit Gets the last breakpoint hit. 
Public property Breakpoints Gets a collection of breakpoints. 
Public property CurrentMode Gets the current mode of the debugger within the context of the IDE. 
Public property CurrentProcess Gets or sets the active process. 
Public property CurrentProgram Sets or returns the active program. 
Public property CurrentStackFrame Gets or sets the current stack frame. 
Public property CurrentThread Gets or sets the current thread being debugged. 
Public property DebuggedProcesses Gets the list of processes currently being debugged. 
Public property DTE Gets the top-level extensibility object. 
Public property HexDisplayMode Gets or sets a value indicating whether the expressions are output in hexadecimal or decimal format. 
Public property HexInputMode Gets or sets a value indicating whether the expressions are evaluated in hexadecimal or decimal format. 
Public property Languages Gets a list of languages that the debugger supports. 
Public property LastBreakReason Gets the last reason that a program was broken. If the program is running it returns DBG_REASON_NONE
Public property LocalProcesses Gets the list of processes currently running on this machine. 
Public property Parent Gets the immediate parent object of the Debugger2 object (DTE2). 
Public property Transports Gets a collection of supported debugging transports. 
Top
  Name Description
Public method Break Causes the given process to pause its execution so that its current state can be analyzed.  
Public method DetachAll Detaches from all attached programs.  
Public method ExecuteStatement 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.  
Public method GetExpression Evaluates an expression based on the current stack frame. If the expression can be parsed but not evaluated, an object is returned but does not contain a valid value.  
Public method GetExpression2 Evaluates an expression based on the current stack frame. If the expression can be parsed but not evaluated, an object is returned but does not contain a valid value.  
Public method GetProcesses Allows the caller to get a collection of processes from a remote machine.  
Public method Go Starts executing the program from the current statement.  
Public method RunToCursor Executes the program to the current position of the source file cursor.  
Public method SetNextStatement Sets the next instruction to be executed, according to the cursor position in the current source file.  
Public method StepInto Steps into the next function call, if possible.  
Public method StepOut Steps out of the current function.  
Public method StepOver Steps over the next function call.  
Public method Stop Stops debugging and terminates or detaches from all attached processes.  
Public method TerminateAll Terminates all currently running debugging processes.  
Public method WriteMinidump If debugging a program and in Break mode, this function creates a minidump of the current debugging session.  
Top
Did you find this helpful?
(1500 characters remaining)
Advertisement