WebView.LongRunningScriptDetected イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
// Register
event_token LongRunningScriptDetected(TypedEventHandler<WebView, WebViewLongRunningScriptDetectedEventArgs const&> const& handler) const;
// Revoke with event_token
void LongRunningScriptDetected(event_token const* cookie) const;
// Revoke with event_revoker
WebView::LongRunningScriptDetected_revoker LongRunningScriptDetected(auto_revoke_t, TypedEventHandler<WebView, WebViewLongRunningScriptDetectedEventArgs const&> const& handler) const;
public event TypedEventHandler<WebView,WebViewLongRunningScriptDetectedEventArgs> LongRunningScriptDetected;
function onLongRunningScriptDetected(eventArgs) { /* Your code */ }
webView.addEventListener("longrunningscriptdetected", onLongRunningScriptDetected);
webView.removeEventListener("longrunningscriptdetected", onLongRunningScriptDetected);
- or -
webView.onlongrunningscriptdetected = onLongRunningScriptDetected;
Public Custom Event LongRunningScriptDetected As TypedEventHandler(Of WebView, WebViewLongRunningScriptDetectedEventArgs)
<WebView LongRunningScriptDetected="eventhandler"/>
イベントの種類
注釈
スクリプトを実行中にアプリが応答しないような場合があったとします。 このイベントは、実行時間の長いスクリプトを中断する機会を提供します。 スクリプトの実行時間を確認するには、WebViewLongRunningScriptDetectedEventArgs オブジェクトの ExecutionTime プロパティをチェックします。 スクリプトを停止するには、イベント引数の StopPageScriptExecution プロパティを true に設定します。 停止したスクリプトは、後続の WebView ナビゲーション中に再読み込みされない限り、再度実行されません。
注意
場合によっては、 WebView で実行時間の長いスクリプトを検出できない場合があります。 たとえば、メモリ割り当てを実行しないループでスクリプトがスタックしている場合、このイベントは発生しない可能性があります。