Debugger4 Methods

 

Namespace:   EnvDTE90a
Assembly:  EnvDTE90a (in EnvDTE90a.dll)

NameDescription
System_CAPS_pubmethodBreak(Boolean)

Causes the given process to pause its execution so that its current state can be analyzed.

System_CAPS_pubmethodDetachAll()

Detaches from all attached programs.

System_CAPS_pubmethodExecuteStatement(String^, Int32, Boolean)

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.

System_CAPS_pubmethodGetExpression(String^, Boolean, Int32)

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.

System_CAPS_pubmethodGetExpression2(String^, Boolean, Boolean, Int32)

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. This method is similar to GetExpression but with an additional Boolean parameter, which can be set to true to indicate that the expression is to be evaluated as a statement.

System_CAPS_pubmethodGetExpression3(String^, StackFrame^, Boolean, Boolean, Boolean, Int32)

Evaluates an expression, similar to M:EnvDTE90.Debugger2.GetExpression(System.String,System.Boolean,System.Boolean,System.Int32). However, this method allows the caller to specify the stack frame that the evaluation will occur on. It also allows the caller to specify whether automatic evaluation of properties and implicit function calls should occur.

System_CAPS_pubmethodGetProcesses(Transport^, String^)

Gets an object that represents the processes that are currently connected for debugging on the specified transport.

System_CAPS_pubmethodGo(Boolean)

Starts executing the program from the current statement.

System_CAPS_pubmethodRunToCursor(Boolean)

Executes the program to the current position of the source file cursor.

System_CAPS_pubmethodSetNextStatement()

Sets the next instruction to be executed, according to the cursor position in the current source file.

System_CAPS_pubmethodSetSymbolSettings(String^, String^, String^, Boolean, Boolean)

Sets various settings for the .PDB symbols used by Visual Studio for debugging and forces reloading of all symbols.

System_CAPS_pubmethodStepInto(Boolean)

Steps into the next function call, if possible.

System_CAPS_pubmethodStepOut(Boolean)

Steps out of the current function.

System_CAPS_pubmethodStepOver(Boolean)

Steps over the next function call.

System_CAPS_pubmethodStop(Boolean)

Stops debugging and terminates or detaches from all attached processes.

System_CAPS_pubmethodTerminateAll()

Terminates all currently running debugging processes.

System_CAPS_pubmethodWriteMinidump(String^, dbgMinidumpOption)

If debugging a program and in Break mode, this function creates a minidump of the current debugging session.

Return to top
Show: