Partager via


Breakpoint.Children, propriété

Obtient une collection d'objets contenus dans cette construction de code.

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

Syntaxe

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

Valeur de propriété

Type : EnvDTE.Breakpoints
Collection Breakpoints.

Notes

Si Breakpoint ne possède pas d'enfant, la valeur Nothing est retournée.

Les enfants sont créés lorsqu'un point d'arrêt en attente défini en mode Design est lié à l'instance spécifique de votre application en mode arrêt ou exécution.

Exemples

L'exemple suivant illustre l'utilisation de la propriété Children.

Pour tester cette propriété :

  1. Définissez un point d'arrêt dans l'application cible.

  2. Exécutez le complément. Le nombre d'enfants du point d'arrêt est zéro.

  3. Exécutez l'application cible en mode débogage.

  4. Lorsque le programme s'arrête au point d'arrêt, exécutez le complément. Le nombre d'enfants est un.

public static void Children(DTE dte)
{
    // Setup debug Output window.
    Window w = (Window)dte.Windows.Item(EnvDTE.Constants.vsWindowKindOutput);
    w.Visible = true;
    OutputWindow ow = (OutputWindow)w.Object;
    OutputWindowPane owp = ow.OutputWindowPanes.Add("Children Property Test");
    owp.Activate();

    //dte is a reference to the DTE object passed to you by the
    //OnConnection method that you implement when you create an add-in.
    EnvDTE.Debugger debugger = (EnvDTE.Debugger)dte.Debugger;
    owp.OutputString("Number of children: " + debugger.Breakpoints.Item(1).Children.Count.ToString());
}
Shared Sub Children(ByRef dte As EnvDTE.DTE)
    MessageBox.Show("Number of children: " + _
                    dte.Debugger.Breakpoints.Item(1).Children().Count().ToString())
End Sub

Sécurité .NET Framework

Voir aussi

Référence

Breakpoint Interface

EnvDTE, espace de noms

Autres ressources

Comment : compiler et exécuter les exemples de code du modèle objet Automation