Debugger.AllBreakpointsLastHit 属性
获取最后同时命中的绑定断点的集合。
命名空间: EnvDTE
程序集: EnvDTE(在 EnvDTE.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 集合。
备注
AllBreakpointsLastHit 返回一个 Breakpoints 集合,此集合包含调试器同时命中的多个绑定断点。 有关绑定断点的更多信息,请参见 dbgBreakpointType 枚举。 若要只检索一个断点,请使用 BreakpointLastHit 属性。
示例
下面的示例演示如何使用 AllBreakpointsLastHit 属性。
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 Breakpoints
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 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。