Click or drag to resize

DebuggerClientSetBlackboxedRangesAsync Method

Version 86.0.240
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.Debugger
Assembly:  CefSharp (in CefSharp.dll) Version: 86.0.240.0 (86.0.240.0)
Syntax
public Task<DevToolsMethodResponse> SetBlackboxedRangesAsync(
	string scriptId,
	IList<ScriptPosition> positions
)

Parameters

scriptId
Type: SystemString
Id of the script.
positions
Type: System.Collections.GenericIListScriptPosition
positions

Return Value

Type: TaskDevToolsMethodResponse
returns System.Threading.Tasks.Task<DevToolsMethodResponse>
See Also