Debugger.SetParent Method

Definition

Overloads

SetParent(Debugger, IEnumerable<Breakpoint>, Nullable<DebuggerResumeAction>, PSHost, PathInfo)

Sets the parent debugger, breakpoints and other debugging context information.

SetParent(Debugger, IEnumerable<Breakpoint>, Nullable<DebuggerResumeAction>, PSHost, PathInfo, Dictionary<String,DebugSource>)

Sets the parent debugger, breakpoints, function source and other debugging context information.

SetParent(Debugger, IEnumerable<Breakpoint>, Nullable<DebuggerResumeAction>, PSHost, PathInfo)

Sets the parent debugger, breakpoints and other debugging context information.

public:
 virtual void SetParent(System::Management::Automation::Debugger ^ parent, System::Collections::Generic::IEnumerable<System::Management::Automation::Breakpoint ^> ^ breakPoints, Nullable<System::Management::Automation::DebuggerResumeAction> startAction, System::Management::Automation::Host::PSHost ^ host, System::Management::Automation::PathInfo ^ path);
public virtual void SetParent (System.Management.Automation.Debugger parent, System.Collections.Generic.IEnumerable<System.Management.Automation.Breakpoint> breakPoints, System.Management.Automation.DebuggerResumeAction? startAction, System.Management.Automation.Host.PSHost host, System.Management.Automation.PathInfo path);
abstract member SetParent : System.Management.Automation.Debugger * seq<System.Management.Automation.Breakpoint> * Nullable<System.Management.Automation.DebuggerResumeAction> * System.Management.Automation.Host.PSHost * System.Management.Automation.PathInfo -> unit
override this.SetParent : System.Management.Automation.Debugger * seq<System.Management.Automation.Breakpoint> * Nullable<System.Management.Automation.DebuggerResumeAction> * System.Management.Automation.Host.PSHost * System.Management.Automation.PathInfo -> unit
Public Overridable Sub SetParent (parent As Debugger, breakPoints As IEnumerable(Of Breakpoint), startAction As Nullable(Of DebuggerResumeAction), host As PSHost, path As PathInfo)

Parameters

parent
Debugger

Parent debugger.

breakPoints
IEnumerable<Breakpoint>

List of breakpoints.

startAction
Nullable<DebuggerResumeAction>

Debugger mode.

host
PSHost

Host.

path
PathInfo

Current path.

Applies to

SetParent(Debugger, IEnumerable<Breakpoint>, Nullable<DebuggerResumeAction>, PSHost, PathInfo, Dictionary<String,DebugSource>)

Sets the parent debugger, breakpoints, function source and other debugging context information.

public:
 virtual void SetParent(System::Management::Automation::Debugger ^ parent, System::Collections::Generic::IEnumerable<System::Management::Automation::Breakpoint ^> ^ breakPoints, Nullable<System::Management::Automation::DebuggerResumeAction> startAction, System::Management::Automation::Host::PSHost ^ host, System::Management::Automation::PathInfo ^ path, System::Collections::Generic::Dictionary<System::String ^, System::Management::Automation::DebugSource ^> ^ functionSourceMap);
public virtual void SetParent (System.Management.Automation.Debugger parent, System.Collections.Generic.IEnumerable<System.Management.Automation.Breakpoint> breakPoints, System.Management.Automation.DebuggerResumeAction? startAction, System.Management.Automation.Host.PSHost host, System.Management.Automation.PathInfo path, System.Collections.Generic.Dictionary<string,System.Management.Automation.DebugSource> functionSourceMap);
abstract member SetParent : System.Management.Automation.Debugger * seq<System.Management.Automation.Breakpoint> * Nullable<System.Management.Automation.DebuggerResumeAction> * System.Management.Automation.Host.PSHost * System.Management.Automation.PathInfo * System.Collections.Generic.Dictionary<string, System.Management.Automation.DebugSource> -> unit
override this.SetParent : System.Management.Automation.Debugger * seq<System.Management.Automation.Breakpoint> * Nullable<System.Management.Automation.DebuggerResumeAction> * System.Management.Automation.Host.PSHost * System.Management.Automation.PathInfo * System.Collections.Generic.Dictionary<string, System.Management.Automation.DebugSource> -> unit
Public Overridable Sub SetParent (parent As Debugger, breakPoints As IEnumerable(Of Breakpoint), startAction As Nullable(Of DebuggerResumeAction), host As PSHost, path As PathInfo, functionSourceMap As Dictionary(Of String, DebugSource))

Parameters

parent
Debugger

Parent debugger

breakPoints
IEnumerable<Breakpoint>

List of breakpoints

startAction
Nullable<DebuggerResumeAction>

Debugger mode

host
PSHost

PowerShell host

path
PathInfo

Current path

functionSourceMap
Dictionary<String,DebugSource>

Function to source map

Applies to