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
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. 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
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, voir Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.