Compartir a través de


Debugger2.Parent (Propiedad)

Obtiene el objeto primario inmediato del objeto Debugger2 (DTE2).

Espacio de nombres:  EnvDTE80
Ensamblado:  EnvDTE80 (en EnvDTE80.dll)

Sintaxis

'Declaración
ReadOnly Property Parent As DTE
DTE Parent { get; }
property DTE^ Parent {
    DTE^ get ();
}
abstract Parent : DTE with get
function get Parent () : DTE

Valor de propiedad

Tipo: DTE
Un objeto DTE.

Comentarios

La propiedad Parent devuelve el elemento primario inmediato del objeto.

Ejemplos

En el siguiente ejemplo se muestra cómo utilizar la propiedad Parent.

Para probar esta propiedad:

  1. Abra el proyecto de destino y ejecute el complemento.
public static void Parent(EnvDTE80.DTE2 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("Parent Property 
    Test");
    owp.Activate();

    EnvDTE80.Debugger2 debugger = (EnvDTE80.Debugger2)dte.Debugger;
    owp.OutputString("The name of the debugger parent: " + 
                     debugger.Parent.Name);
}

Seguridad de .NET Framework

Vea también

Referencia

Debugger2 Interfaz

EnvDTE80 (Espacio de nombres)