WebUIView.WebResourceRequested Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
An event that is fired when an HTTP request is made.
// 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