Proprietà Debugger.Parent
Ottiene l'oggetto padre immediato di un oggetto Debugger.
Spazio dei nomi: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Sintassi
'Dichiarazione
ReadOnly Property Parent As DTE
DTE Parent { get; }
property DTE^ Parent {
DTE^ get ();
}
abstract Parent : DTE with get
function get Parent () : DTE
Valore proprietà
Tipo: EnvDTE.DTE
Oggetto DTE.
Note
La proprietà Parent restituisce il primo oggetto padre dell'oggetto.
Esempi
Nell'esempio seguente viene illustrato l'utilizzare della proprietà Parent.
Per verificare la proprietà:
- Aprire il progetto di destinazione ed eseguire il componente aggiuntivo.
public static void Parent(DTE dte)
{
// Setup the 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("Parent Property Test");
owp.Activate();
EnvDTE.Debugger debugger = dte.Debugger;
owp.OutputString("The name of the debugger parent: " + debugger.Parent.Name);
}
Shared Sub ParentProperty(ByRef dte As EnvDTE.DTE)
MessageBox.Show("The name of the debugger parent: " + dte.Debugger.Parent.Name, _
"Debugger Test - Parent Property Test")
End Sub
Sicurezza di .NET Framework
- Attendibilità totale per il chiamante immediato. Impossibile utilizzare questo membro in codice parzialmente attendibile. Per altre informazioni, vedere Utilizzo di librerie da codice parzialmente attendibile.
Vedere anche
Riferimenti
Altre risorse
Procedura: compilare ed eseguire gli esempi di codice del modello a oggetti di automazione