IWebViewControl.LongRunningScriptDetected イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
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 プロパティをチェックします。 スクリプトを停止するには、イベント引数 StopPageScriptExecution プロパティを true に設定します。 停止したスクリプトは、後続の IWebViewControl ナビゲーション中に再読み込みされない限り、再度実行されません。
注意
場合によっては、IWebVieControl で実行時間の長いスクリプトを検出できない場合があります。 たとえば、メモリ割り当てを実行しないループでスクリプトがスタックしている場合、このイベントは発生しない可能性があります。