DebuggerClient.SetBlackboxedRangesAsync Method |
Version 93.1.111
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: 93.1.111.0 (93.1.111.0)
Syntaxpublic Task<DevToolsMethodResponse> SetBlackboxedRangesAsync(
string scriptId,
IList<ScriptPosition> positions
)
public:
Task<DevToolsMethodResponse^>^ SetBlackboxedRangesAsync(
String^ scriptId,
IList<ScriptPosition^>^ positions
)
Parameters
- scriptId
- Type: System.String
Id of the script. - positions
- Type: System.Collections.Generic.IList<ScriptPosition>
positions
Return Value
Type:
Task<DevToolsMethodResponse>returns System.Threading.Tasks.Task<DevToolsMethodResponse>
See Also