Debugger2::Parent Property
Visual Studio 2015
Gets the immediate parent object of the Debugger2 object (DTE2).
Assembly: EnvDTE80 (in EnvDTE80.dll)
Implements
Debugger::ParentThe Parent property returns the immediate parent to the object.
The following example demonstrates how to use the Parent property.
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); }
Show: