Debugger2.Parent 属性

获取 Debugger2 对象 (DTE2) 的直接父对象。

命名空间:  EnvDTE80
程序集:  EnvDTE80(在 EnvDTE80.dll 中)

语法

声明
ReadOnly Property Parent As DTE
    Get
DTE Parent { get; }
property DTE^ Parent {
    DTE^ get ();
}
abstract Parent : DTE
function get Parent () : DTE

属性值

类型:EnvDTE.DTE
一个 DTE 对象。

实现

Debugger.Parent

备注

Parent 属性返回对象的直接父对象。

示例

下面的示例演示如何使用 Parent 属性。

测试此属性:

  1. 打开目标项目并运行外接程序。
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);
}

.NET Framework 安全性

请参见

参考

Debugger2 接口

Parent 重载

EnvDTE80 命名空间