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.3.1
Syntaxpublic ContinuationCallback ContinuationCallback { get; set; }
Public Property ContinuationCallback As ContinuationCallback
Get
Set
public:
property ContinuationCallback^ ContinuationCallback {
ContinuationCallback^ get ();
void set (ContinuationCallback^ value);
}
member ContinuationCallback : ContinuationCallback with get, set
Property Value
Type:
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