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.

Definition

Namespace: PCBIScript.DebugHelp
Assembly: PCBI_ScriptEngine (in PCBI_ScriptEngine.dll) Version: 16.0.0.0 (16.0.0.0)
C#
public sealed class Debugger
Inheritance
Object    Debugger

Constructors

DebuggerInitializes a new instance of the Debugger class

Properties

IsAttached Indicates if a script debugger is attached.

Methods

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.

Extension Methods

See Also