IScriptEngine.ContinuationCallback Property |
Gets or sets a callback that can be used to halt script execution.
Namespace: Microsoft.ClearScriptAssembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.5.0
SyntaxContinuationCallback ContinuationCallback { get; set; }
Property ContinuationCallback As ContinuationCallback
Get
Set
property ContinuationCallback^ ContinuationCallback {
ContinuationCallback^ get ();
void set (ContinuationCallback^ value);
}
abstract ContinuationCallback : ContinuationCallback with get, set
Property Value
ContinuationCallback
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