DebuggerClientResumeAsync Method |
Version 130.1.90
Resumes JavaScript execution.
Namespace: CefSharp.DevTools.DebuggerAssembly: CefSharp.Core (in CefSharp.Core.dll) Version: 129.0.110.0
Syntax public Task<DevToolsMethodResponse> ResumeAsync(
bool? terminateOnResume = null
)
public:
Task<DevToolsMethodResponse^>^ ResumeAsync(
Nullable<bool> terminateOnResume = nullptr
)
Parameters
- terminateOnResume NullableBoolean (Optional)
- Set to true to terminate execution upon resuming execution. In contrastto Runtime.terminateExecution, this will allows to execute furtherJavaScript (i.e. via evaluation) until execution of the paused codeis actually resumed, at which point termination is triggered.If execution is currently not paused, this parameter has no effect.
Return Value
TaskDevToolsMethodResponsereturns System.Threading.Tasks.Task<DevToolsMethodResponse>
See Also