Debugger2.RunToCursor 方法 (Boolean)
执行程序直至源文件光标的当前位置。
命名空间: EnvDTE80
程序集: EnvDTE80(在 EnvDTE80.dll 中)
语法
声明
Sub RunToCursor ( _
WaitForBreakOrEnd As Boolean _
)
void RunToCursor(
bool WaitForBreakOrEnd
)
void RunToCursor(
[InAttribute] bool WaitForBreakOrEnd
)
abstract RunToCursor :
WaitForBreakOrEnd:bool -> unit
function RunToCursor(
WaitForBreakOrEnd : boolean
)
参数
- WaitForBreakOrEnd
类型:System.Boolean
如果此函数调用应等待至进入中断模式或设计模式后才返回,则设置为 true。如果希望此调用在导致调试器开始执行之后立刻返回,则设置为 false。返回时,调试器可以为设计、中断或运行模式。
有关更多信息,请参见代码单步执行概述。
备注
RunToCursor 执行程序直至源文件光标的当前位置。有关更多信息,请参见如何:运行到指定位置。
示例
下面的示例演示如何使用 RunToCursor 方法。
若要测试此方法,请执行下列操作:
- 打开目标项目并运行外接程序。
public static void RunToCursor(EnvDTE80.DTE2 dte)
{
EnvDTE.TextSelection ts =
(EnvDTE.TextSelection)dte.ActiveDocument.Selection;
ts.GotoLine(15, false);
EnvDTE80.Debugger2 debugger = (EnvDTE80.Debugger2)dte.Debugger;
debugger.RunToCursor(true);
// Setup debug Output window.
Window w =
(Window)dte.Windows.Item(EnvDTE.Constants.vsWindowKindOutput);
w.Visible = true;
OutputWindow ow = (OutputWindow)w.Object;
OutputWindowPane owp = ow.OutputWindowPanes.Add("RunToCursor Method
Test");
owp.Activate();
if (debugger.CurrentProgram.IsBeingDebugged)
owp.OutputString("This program is being debugged and " +
"the cursor is on line: " + ts.CurrentLine);
else
owp.OutputString("This program is not being debugged.");
}
Sub RunToLine(Optional ByVal line As Integer = -1)
If line <> -1 Then
Dim ts As TextSelection
ts = DTE2.ActiveDocument.Selection
ts.GotoLine(line)
DTE2.Debugger.RunToCursor()
End If
End Sub
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。