Debugger.DisableBreakpoint Method  
Definition
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.
Overloads
| DisableBreakpoint(Breakpoint) | Disables a breakpoint in the debugger in the current runspace. | 
| DisableBreakpoint(Breakpoint, Nullable<Int32>) | Disables a breakpoint in the debugger. | 
DisableBreakpoint(Breakpoint)
Disables a breakpoint in the debugger in the current runspace.
public System.Management.Automation.Breakpoint DisableBreakpoint(System.Management.Automation.Breakpoint breakpoint);member this.DisableBreakpoint : System.Management.Automation.Breakpoint -> System.Management.Automation.BreakpointPublic Function DisableBreakpoint (breakpoint As Breakpoint) As BreakpointParameters
- breakpoint
- Breakpoint
The breakpoint to enable in the debugger. This value may not be null.
Returns
The updated breakpoint if it was found; null if the breakpoint was not found in the debugger.
Applies to
DisableBreakpoint(Breakpoint, Nullable<Int32>)
Disables a breakpoint in the debugger.
public virtual System.Management.Automation.Breakpoint DisableBreakpoint(System.Management.Automation.Breakpoint breakpoint, int? runspaceId);abstract member DisableBreakpoint : System.Management.Automation.Breakpoint * Nullable<int> -> System.Management.Automation.Breakpoint
override this.DisableBreakpoint : System.Management.Automation.Breakpoint * Nullable<int> -> System.Management.Automation.BreakpointPublic Overridable Function DisableBreakpoint (breakpoint As Breakpoint, runspaceId As Nullable(Of Integer)) As BreakpointParameters
- breakpoint
- Breakpoint
The breakpoint to enable in the debugger. This value may not be null.
The runspace id of the runspace you want to interact with. A null value will use the current runspace.
Returns
The updated breakpoint if it was found; null if the breakpoint was not found in the debugger.