Breakpoint Constructors
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
Breakpoint(String) |
Creates a new instance of a Breakpoint |
Breakpoint(String, Int32) |
Creates a new instance of a Breakpoint |
Breakpoint(String, ScriptBlock) |
Creates a new instance of a Breakpoint |
Breakpoint(String, ScriptBlock, Int32) |
Creates a new instance of a Breakpoint |
Breakpoint(String)
Creates a new instance of a Breakpoint
protected Breakpoint (string script);
new System.Management.Automation.Breakpoint : string -> System.Management.Automation.Breakpoint
Protected Sub New (script As String)
Parameters
- script
- String
Applies to
Breakpoint(String, Int32)
Creates a new instance of a Breakpoint
protected Breakpoint (string script, int id);
new System.Management.Automation.Breakpoint : string * int -> System.Management.Automation.Breakpoint
Protected Sub New (script As String, id As Integer)
Parameters
- script
- String
- id
- Int32
Applies to
Breakpoint(String, ScriptBlock)
Creates a new instance of a Breakpoint
protected Breakpoint (string script, System.Management.Automation.ScriptBlock action);
new System.Management.Automation.Breakpoint : string * System.Management.Automation.ScriptBlock -> System.Management.Automation.Breakpoint
Protected Sub New (script As String, action As ScriptBlock)
Parameters
- script
- String
- action
- ScriptBlock
Applies to
Breakpoint(String, ScriptBlock, Int32)
Creates a new instance of a Breakpoint
protected Breakpoint (string script, System.Management.Automation.ScriptBlock action, int id);
new System.Management.Automation.Breakpoint : string * System.Management.Automation.ScriptBlock * int -> System.Management.Automation.Breakpoint
Protected Sub New (script As String, action As ScriptBlock, id As Integer)
Parameters
- script
- String
- action
- ScriptBlock
- id
- Int32