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
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
Debugger.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. 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
- 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, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.