Class ResumeCommandSettings
Resumes JavaScript execution.
public sealed class ResumeCommandSettings : ICommand
- Inheritance
-
ResumeCommandSettings
- Implements
- Inherited Members
Properties
CommandName
Gets the name of the command.
[JsonIgnore]
public string CommandName { get; }
Property Value
TerminateOnResume
Set to true to terminate execution upon resuming execution. In contrast to Runtime.terminateExecution, this will allows to execute further JavaScript (i.e. via evaluation) until execution of the paused code is actually resumed, at which point termination is triggered. If execution is currently not paused, this parameter has no effect.
[JsonPropertyName("terminateOnResume")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public bool? TerminateOnResume { get; set; }
Property Value
- bool?