List the breakpoints in a script
Overview
List the breakpoints in the script of an app by using the GetScriptBreakpoints method.
Example
The client sends:
{
"jsonrpc": "2.0",
"id": 3,
"method": "GetScriptBreakpoints",
"handle": 1,
"params": []
}
The engine returns:
{
"jsonrpc": "2.0",
"id": 3,
"result": {
"qBreakpoints": [
{
"qbufferName": "BreakPoint1",
"qlineIx": 2,
"qEnabled": true
},
{
"qbufferName": "BreakPoint2",
"qlineIx": 6
}
]
}
}
The list of the breakpoints in the script of the app are displayed.
Did this page help you?
If you find any issues with this page or its content – a typo, a missing step, or a technical error – let us know how we can improve!