IScriptEngineContinuationCallback 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.4.5
Syntax ContinuationCallback 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
ContinuationCallbackRemarks
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