Debugger.Parent Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém o objeto pai imediato de um Debugger objeto.
public:
property EnvDTE::DTE ^ Parent { EnvDTE::DTE ^ get(); };
public:
property EnvDTE::DTE ^ Parent { EnvDTE::DTE ^ get(); };
[System.Runtime.InteropServices.DispId(201)]
public EnvDTE.DTE Parent { [System.Runtime.InteropServices.DispId(201)] get; }
[<System.Runtime.InteropServices.DispId(201)>]
[<get: System.Runtime.InteropServices.DispId(201)>]
member this.Parent : EnvDTE.DTE
Public ReadOnly Property Parent As DTE
Valor da propriedade
Um objeto DTE.
- Atributos
Exemplos
O exemplo a seguir demonstra como usar a Parent propriedade.
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
Comentários
A Parent propriedade retorna o pai imediato para o objeto.