Threads.Parent Property

Gets the immediate parent object of a Threads collection.

Namespace:  EnvDTE
Assembly:  EnvDTE (in EnvDTE.dll)

Syntax

'Declaration
ReadOnly Property Parent As Debugger
Debugger Parent { get; }
property Debugger^ Parent {
    Debugger^ get ();
}
abstract Parent : Debugger
function get Parent () : Debugger

Property Value

Type: EnvDTE.Debugger
A Debugger object.

Examples

The following example demonstrates how to use the Parent property.

To test this property:

  1. Set a breakpoint in your target application.

  2. Run the target application in the debug mode.

  3. When the application stops on the breakpoint, run the add-in.

public static void ThreadsParent(DTE dte)
{
    EnvDTE.Threads threads = dte.Debugger.CurrentProgram.Threads;
    MessageBox.Show("\nThe name of the current program: " + 
        threads.Parent.CurrentProgram.Name, "Testing Threads Parent Property");
}
Shared Sub ThreadsParent(ByRef dte As EnvDTE.DTE)
    Dim threads As EnvDTE.Threads = dte.Debugger.CurrentProgram.Threads
    MessageBox.Show("The name of the current program: " + _
                    threads.Parent.CurrentProgram.Name, _
                    "Threads Test - Parent Property")
End Sub

.NET Framework Security

See Also

Reference

Threads Interface

EnvDTE Namespace

Other Resources

How to: Compile and Run the Automation Object Model Code Examples