Partager via


Debugger2.AllBreakpointsLastHit, propriété

Obtient une collection des derniers points d'arrêt liés ayant fait l'objet d'un accès simultané.

Espace de noms :  EnvDTE80
Assembly :  EnvDTE80 (dans EnvDTE80.dll)

Syntaxe

'Déclaration
ReadOnly Property AllBreakpointsLastHit As Breakpoints
Breakpoints AllBreakpointsLastHit { get; }
property Breakpoints^ AllBreakpointsLastHit {
    Breakpoints^ get ();
}
abstract AllBreakpointsLastHit : Breakpoints with get
function get AllBreakpointsLastHit () : Breakpoints

Valeur de propriété

Type : Breakpoints
Collection Breakpoints.

Notes

AllBreakpointsLastHit obtient une collection Breakpoints qui contient des points d'arrêt liés multiples auxquels le débogueur accède simultanément. Consultez dbgBreakpointType pour plus d'informations sur les points d'arrêt liés. Pour récupérer uniquement un point d'arrêt, utilisez la propriété BreakpointLastHit.

Exemples

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 = DTE2.Windows.Item(Constants.vsWindowKindOutput).Object

    Dim bppane As OutputWindowPane
    bppane = ow.OutputWindowPanes.Add("Debugger")

    Dim hitbps As Breakpoints
    hitbps = DTE2.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

Sécurité .NET Framework

Voir aussi

Référence

Debugger2 Interface

EnvDTE80, espace de noms