Compartir a través de


WebViewControl.LongRunningScriptDetected Evento

Definición

Evento que se desencadena periódicamente mientras el control ejecuta JavaScript, lo que le permite detener el script.

Para obtener más información, consulta Windows.Web.UI.IWebViewControl.

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

Tipo de evento

Implementaciones

Se aplica a