DebuggerClient.SetBlackboxPatternsAsync Method |
Version 110.0.300
Replace previous blackbox patterns with passed ones. Forces backend to skip stepping/pausing in
scripts with url matching one of the patterns. VM will try to leave blackboxed script by
performing 'step in' several times, finally resorting to 'step out' if unsuccessful.
Namespace:
CefSharp.DevTools.Debugger
Assembly:
CefSharp (in CefSharp.dll) Version: 110.0.300.0 (110.0.300.0)
Syntaxpublic Task<DevToolsMethodResponse> SetBlackboxPatternsAsync(
string[] patterns
)
public:
Task<DevToolsMethodResponse^>^ SetBlackboxPatternsAsync(
array<String^>^ patterns
)
Parameters
- patterns
- Type:System.String[]
Array of regexps that will be used to check script url for blackbox state.
Return Value
Type:
Task<DevToolsMethodResponse>returns System.Threading.Tasks.Task<DevToolsMethodResponse>
See Also