Click or drag to resize

V8RuntimeEnableInterruptPropagation Property

Enables or disables interrupt propagation in the V8 runtime.

Namespace: Microsoft.ClearScript.V8
Assembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.4.5
Syntax
public bool EnableInterruptPropagation { get; set; }

Property Value

Boolean
Remarks
By default, when nested script execution is interrupted via Interrupt, an instance of ScriptInterruptedException, if not handled by the host, is wrapped and delivered to the parent script frame as a normal exception that JavaScript code can catch. Setting this property to true causes the V8 runtime to remain in the interrupted state until its outermost script frame has been processed.
See Also