Debugger.GetBreakpoints Method

Definition

Overloads

GetBreakpoints()

Returns breakpoints in the current runspace, primarily for the Get-PSBreakpoint cmdlet.

GetBreakpoints(Nullable<Int32>)

Returns breakpoints primarily for the Get-PSBreakpoint cmdlet.

GetBreakpoints()

Returns breakpoints in the current runspace, primarily for the Get-PSBreakpoint cmdlet.

public System.Collections.Generic.List<System.Management.Automation.Breakpoint> GetBreakpoints ();

Returns

Applies to

GetBreakpoints(Nullable<Int32>)

Returns breakpoints primarily for the Get-PSBreakpoint cmdlet.

public virtual System.Collections.Generic.List<System.Management.Automation.Breakpoint> GetBreakpoints (int? runspaceId);

Parameters

runspaceId
Nullable<Int32>

The runspace id of the runspace you want to interact with. A null value will use the current runspace.

Returns

Applies to