StackFrames.Parent Property
Gets the immediate parent object of a StackFrames 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 with get
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:
Set a breakpoint in your target application.
Run the target application in the debug mode.
When the application stops on the breakpoint, run the add-in.
public static void StackFramesParent(DTE dte)
{
EnvDTE.StackFrames stackFrames = dte.Debugger.CurrentThread.StackFrames;
MessageBox.Show("\nThe name of the current program: " +
stackFrames.Parent.CurrentProgram.Name,
"Stack Frames Parent Property Test");
}
Shared Sub StackFramesParent(ByRef dte As EnvDTE.DTE)
Dim stackFrames As EnvDTE.StackFrames = dte.Debugger.CurrentThread.StackFrames
MessageBox.Show("The name of the current program: " + _
stackFrames.Parent.CurrentProgram.Name, _
"Stack Frame Test - Parent Property")
End Sub
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
Other Resources
How to: Compile and Run the Automation Object Model Code Examples