List the breakpoints in a script
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.