Click or drag to resize

ScriptEngineContinuationCallback Property

Gets or sets a callback that can be used to halt script execution.

Namespace: Microsoft.ClearScript
Assembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax
public ContinuationCallback ContinuationCallback { get; set; }

Property Value

ContinuationCallback

Implements

IScriptEngineContinuationCallback
Remarks
During script execution the script engine periodically invokes this callback to determine whether it should continue. If the callback returns false, the script engine terminates script execution and throws an exception.
See Also