Debugger Class
Enables communication with the script debugger.
The methods are only effective if a script debugger is active.
If no script debugger is available, the methods will return without any error message.
In this case no action is taken and return values are set to default values.
Namespace: PCBIScript.DebugHelpAssembly: PCBI_ScriptEngine (in PCBI_ScriptEngine.dll) Version: 16.0.0.0 (16.0.0.0)
public sealed class Debugger
Public NotInheritable Class Debugger
public ref class Debugger sealed
[<SealedAttribute>]
type Debugger = class end
- Inheritance
- Object Debugger
Debugger | Initializes a new instance of the Debugger class |
IsAttached |
Indicates if a script debugger is attached.
|
Break |
Signals a break point to the attached script debugger.
|
Break(Boolean) |
Signals a break point to the attached script debugger.
|
Break(Int32) |
Signals a break point to the attached script debugger.
|
Break(String) |
Signals a break point to the attached script debugger.
|
Break(Boolean, Int32) |
Signals a break point to the attached script debugger.
|
Break(Boolean, String) |
Signals a break point to the attached script debugger.
|
Break(Int32, String) |
Signals a break point to the attached script debugger.
|
Break(IPCBIScript, Int32) | |
Break(String, Boolean) |
Signals a break point to the attached script debugger.
|
Break(String, Int32) |
Signals a break point to the attached script debugger.
|
Break(String, String) |
Signals a break point to the attached script debugger.
|
Break(Boolean, Int32, String) |
Signals a break point to the attached script debugger.
|
Break(String, Boolean, Int32) |
Signals a break point to the attached script debugger.
|
Break(String, Boolean, String) |
Signals a break point to the attached script debugger.
|
Break(String, Int32, String) |
Signals a break point to the attached script debugger.
|
Break(String, Boolean, Int32, String) |
Signals a break point to the attached script debugger.
|