WebUIView.WebResourceRequested Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Evento generato quando viene effettuata una richiesta HTTP.
// Register
event_token WebResourceRequested(TypedEventHandler<IWebViewControl, WebViewControlWebResourceRequestedEventArgs const&> const& handler) const;
// Revoke with event_token
void WebResourceRequested(event_token const* cookie) const;
// Revoke with event_revoker
WebUIView::WebResourceRequested_revoker WebResourceRequested(auto_revoke_t, TypedEventHandler<IWebViewControl, WebViewControlWebResourceRequestedEventArgs const&> const& handler) const;
public event TypedEventHandler<IWebViewControl,WebViewControlWebResourceRequestedEventArgs> WebResourceRequested;
function onWebResourceRequested(eventArgs) { /* Your code */ }
webUIView.addEventListener("webresourcerequested", onWebResourceRequested);
webUIView.removeEventListener("webresourcerequested", onWebResourceRequested);
- or -
webUIView.onwebresourcerequested = onWebResourceRequested;
Public Custom Event WebResourceRequested As TypedEventHandler(Of IWebViewControl, WebViewControlWebResourceRequestedEventArgs) Implements WebResourceRequested