Debugger3.AllBreakpointsLastHit 属性
获取最后同时命中的绑定断点的集合。
命名空间: EnvDTE90
程序集: EnvDTE90(在 EnvDTE90.dll 中)
语法
声明
ReadOnly Property AllBreakpointsLastHit As Breakpoints
Get
Breakpoints AllBreakpointsLastHit { get; }
property Breakpoints^ AllBreakpointsLastHit {
Breakpoints^ get ();
}
abstract AllBreakpointsLastHit : Breakpoints
function get AllBreakpointsLastHit () : Breakpoints
属性值
类型:EnvDTE.Breakpoints
一个 Breakpoints 集合。
实现
Debugger2.AllBreakpointsLastHit
备注
AllBreakpointsLastHit 获取一个 Breakpoints 集合,该集合中包含调试器同时命中的多个绑定断点。 有关绑定断点的更多信息,请参见 dbgBreakpointType。 若要只检索一个断点,请使用 BreakpointLastHit 属性。
示例
Sub ListBreakpointsLastHit()
' This function dumps the names of all the breakpoints last hit to
' a new pane in the Output window.
Dim ow As OutputWindow
ow = DTE.Windows.Item(Constants.vsWindowKindOutput).Object
Dim bppane As OutputWindowPane
bppane = ow.OutputWindowPanes.Add("Debugger")
Dim hitbps As EnvDTE90.Breakpoints3
hitbps = DTE.Debugger.AllBreakpointsLastHit
If (hitbps.Count > 0) Then
Dim bp As Breakpoint
For Each bp In hitbps
bppane.OutputString(bp.Name + vbCrLf)
Next
Else
bppane.OutputString("No breakpoints were hit")
End If
End Sub
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。