共用方式為


WebUIView.LongRunningScriptDetected 事件

定義

控制項執行 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
WebUIView::LongRunningScriptDetected_revoker LongRunningScriptDetected(auto_revoke_t, TypedEventHandler<IWebViewControl, WebViewControlLongRunningScriptDetectedEventArgs const&> const& handler) const;
public event TypedEventHandler<IWebViewControl,WebViewControlLongRunningScriptDetectedEventArgs> LongRunningScriptDetected;
function onLongRunningScriptDetected(eventArgs) { /* Your code */ }
webUIView.addEventListener("longrunningscriptdetected", onLongRunningScriptDetected);
webUIView.removeEventListener("longrunningscriptdetected", onLongRunningScriptDetected);
- or -
webUIView.onlongrunningscriptdetected = onLongRunningScriptDetected;
Public Custom Event LongRunningScriptDetected As TypedEventHandler(Of IWebViewControl, WebViewControlLongRunningScriptDetectedEventArgs) Implements LongRunningScriptDetected

事件類型

實作

適用於