Partager via


Debugger3.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 :  EnvDTE90
Assembly :  EnvDTE90 (dans EnvDTE90.dll)

Syntaxe

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

Valeur de propriété

Type : EnvDTE.Breakpoints
Collection Breakpoints.

Implémentations

Debugger2.AllBreakpointsLastHit

Notes

AllBreakpointsLastHit obtient une collection Breakpoints qui contient des points d'arrêt liés multiples auxquels le débogueur accède simultanément. Pour plus d'informations sur les points d'arrêt liés, consultez dbgBreakpointType. Pour récupérer un seul 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 = 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

Sécurité .NET Framework

Voir aussi

Référence

Debugger3 Interface

AllBreakpointsLastHit, surcharge

EnvDTE90, espace de noms