Debugger.GetBreakpoints Method
In this article
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
GetBreakpoints() |
Returns breakpoints in the current runspace, primarily for the Get-PSBreakpoint cmdlet. |
GetBreakpoints(Nullable<Int32>) |
Returns breakpoints primarily for the Get-PSBreakpoint cmdlet. |
Returns breakpoints in the current runspace, primarily for the Get-PSBreakpoint cmdlet.
public System.Collections.Generic.List<System.Management.Automation.Breakpoint> GetBreakpoints ();
member this.GetBreakpoints : unit -> System.Collections.Generic.List<System.Management.Automation.Breakpoint>
Public Function GetBreakpoints () As List(Of Breakpoint)
Returns
Applies to
Returns breakpoints primarily for the Get-PSBreakpoint cmdlet.
public virtual System.Collections.Generic.List<System.Management.Automation.Breakpoint> GetBreakpoints (int? runspaceId);
abstract member GetBreakpoints : Nullable<int> -> System.Collections.Generic.List<System.Management.Automation.Breakpoint>
override this.GetBreakpoints : Nullable<int> -> System.Collections.Generic.List<System.Management.Automation.Breakpoint>
Public Overridable Function GetBreakpoints (runspaceId As Nullable(Of Integer)) As List(Of Breakpoint)
Parameters
The runspace id of the runspace you want to interact with. A null value will use the current runspace.