WebView2.WebMessageReceived Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Se produit lorsqu’un nouveau document HTML est chargé.
// Register
event_token WebMessageReceived(TypedEventHandler<WebView2, CoreWebView2WebMessageReceivedEventArgs const&> const& handler) const;
// Revoke with event_token
void WebMessageReceived(event_token const* cookie) const;
// Revoke with event_revoker
WebView2::WebMessageReceived_revoker WebMessageReceived(auto_revoke_t, TypedEventHandler<WebView2, CoreWebView2WebMessageReceivedEventArgs const&> const& handler) const;
public event TypedEventHandler<WebView2,CoreWebView2WebMessageReceivedEventArgs> WebMessageReceived;
function onWebMessageReceived(eventArgs) { /* Your code */ }
webView2.addEventListener("webmessagereceived", onWebMessageReceived);
webView2.removeEventListener("webmessagereceived", onWebMessageReceived);
- or -
webView2.onwebmessagereceived = onWebMessageReceived;
Public Custom Event WebMessageReceived As TypedEventHandler(Of WebView2, CoreWebView2WebMessageReceivedEventArgs)