DebuggerClientSetBlackboxedRangesAsync Method |
Version 130.1.90
Makes backend skip steps in the script in blackboxed ranges. VM will try leave blacklisted
scripts by performing 'step in' several times, finally resorting to 'step out' if unsuccessful.
Positions array contains positions where blackbox state is changed. First interval isn't
blackboxed. Array should be sorted.
Namespace: CefSharp.DevTools.DebuggerAssembly: CefSharp.Core (in CefSharp.Core.dll) Version: 129.0.110.0
Syntax public Task<DevToolsMethodResponse> SetBlackboxedRangesAsync(
string scriptId,
IList<ScriptPosition> positions
)
public:
Task<DevToolsMethodResponse^>^ SetBlackboxedRangesAsync(
String^ scriptId,
IList<ScriptPosition^>^ positions
)
Parameters
- scriptId String
- Id of the script.
- positions IListScriptPosition
- positions
Return Value
TaskDevToolsMethodResponsereturns System.Threading.Tasks.Task<DevToolsMethodResponse>
See Also