IWebViewControl.LongRunningScriptDetected 事件

定义

在 IWebViewControl 执行 JavaScript 时定期发生,以便停止脚本。

// Register
event_token LongRunningScriptDetected(TypedEventHandler<IWebViewControl, WebViewControlLongRunningScriptDetectedEventArgs const&> const& handler) const;

// Revoke with event_token
void LongRunningScriptDetected(event_token const* cookie) const;

// Revoke with event_revoker
IWebViewControl::LongRunningScriptDetected_revoker LongRunningScriptDetected(auto_revoke_t, TypedEventHandler<IWebViewControl, WebViewControlLongRunningScriptDetectedEventArgs const&> const& handler) const;
event TypedEventHandler<IWebViewControl,WebViewControlLongRunningScriptDetectedEventArgs> LongRunningScriptDetected;
function onLongRunningScriptDetected(eventArgs) { /* Your code */ }
iWebViewControl.addEventListener("longrunningscriptdetected", onLongRunningScriptDetected);
iWebViewControl.removeEventListener("longrunningscriptdetected", onLongRunningScriptDetected);
- or -
iWebViewControl.onlongrunningscriptdetected = onLongRunningScriptDetected;
Event LongRunningScriptDetected As TypedEventHandler(Of IWebViewControl, WebViewControlLongRunningScriptDetectedEventArgs) 

事件类型

注解

脚本运行期间,你的应用可能不做任何响应。 此事件提供了中断长时间运行的脚本的机会。 若要确定脚本的运行时间,检查 WebViewLongRunningScriptDetectedEventArgs 对象的 ExecutionTime 属性。 若要停止脚本,请将事件 args StopPageScriptExecution 属性设置为 true。 除非在后续 IWebViewControl 导航期间重新加载已停止的脚本,否则不会再次执行该脚本。

注意

在某些情况下,IWebVieControl 无法检测长时间运行的脚本。 例如,如果脚本停滞在不执行任何内存分配的循环中,则可能不会发生此事件。

适用于