ScriptEngineContinuationCallback 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 public ContinuationCallback ContinuationCallback { get; set; }
Public Property ContinuationCallback As ContinuationCallback
Get
Set
public:
virtual property ContinuationCallback^ ContinuationCallback {
ContinuationCallback^ get () sealed;
void set (ContinuationCallback^ value) sealed;
}
abstract ContinuationCallback : ContinuationCallback with get, set
override ContinuationCallback : ContinuationCallback with get, set
Property Value
ContinuationCallbackImplements
IScriptEngineContinuationCallbackRemarks
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