DebuggerClientResumeAsync Method  | 
Version 92.0.260 
            Resumes JavaScript execution.
            
 
    Namespace: 
   CefSharp.DevTools.Debugger
    Assembly:
   CefSharp (in CefSharp.dll) Version: 92.0.260.0 (92.0.260.0)
Syntaxpublic Task<DevToolsMethodResponse> ResumeAsync(
	bool? terminateOnResume = null
)
public:
Task<DevToolsMethodResponse^>^ ResumeAsync(
	Nullable<bool> terminateOnResume = nullptr
)
Parameters
- terminateOnResume (Optional)
 - Type: SystemNullableBoolean
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
Type: 
TaskDevToolsMethodResponsereturns System.Threading.Tasks.Task<DevToolsMethodResponse>
See Also