Breakpoint.DTE, propriété
Obtient l'objet d'extensibilité de niveau supérieur.
Espace de noms : EnvDTE
Assembly : EnvDTE (dans EnvDTE.dll)
Syntaxe
'Déclaration
ReadOnly Property DTE As DTE
DTE DTE { get; }
property DTE^ DTE {
DTE^ get ();
}
abstract DTE : DTE with get
function get DTE () : DTE
Valeur de propriété
Type : EnvDTE.DTE
Objet DTE.
Notes
Dans Visual Studio, l'objet DTE est à la base du modèle Automation que les autres modèles objet appellent souvent "Application".
Exemples
L'exemple suivant illustre l'utilisation de la propriété DTE.
Pour tester cette propriété :
Définissez un point d'arrêt dans l'application cible.
Exécutez le complément.
public static void DTE(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("DTE 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.
DTE DTEProp = dte.Debugger.Breakpoints.Item(1).DTE ;
owp.OutputString("Edition of the environment: " + DTEProp.Edition);
}
' Set a breakpoint in the target application. Run the application in the
' debug mode.When the program stops at the breakpoint, run the add-in.
Shared Sub DTEProperty(ByRef dte As EnvDTE.DTE)
Dim DTEProp As DTE
DTEProp = dte.Debugger.Breakpoints.Item(1).DTE
MessageBox.Show("Edition of the environment: " + DTEProp.Edition)
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.
Voir aussi
Référence
Autres ressources
Comment : compiler et exécuter les exemples de code du modèle objet Automation