Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets the debugger objects.
Namespace: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Syntax
'Declaration
ReadOnly Property Debugger As Debugger
'Usage
Dim instance As _DTE
Dim value As Debugger
value = instance.Debugger
Debugger Debugger { get; }
property Debugger^ Debugger {
Debugger^ get ();
}
function get Debugger () : Debugger
Property Value
Type: EnvDTE.Debugger
A Debugger object.
Examples
Sub DebuggerExample()
DTE.Debugger.StepOver()
While DTE.Debugger.CurrentMode <> dbgDebugMode.dbgDesignMode
DTE.Debugger.StepOver()
End While
End Sub
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.