WebView2.CoreProcessFailed Ereignis

Definition

Tritt auf, wenn der WebView2-Kernprozess fehlschlägt.

// Register
event_token CoreProcessFailed(TypedEventHandler<WebView2, CoreWebView2ProcessFailedEventArgs const&> const& handler) const;

// Revoke with event_token
void CoreProcessFailed(event_token const* cookie) const;

// Revoke with event_revoker
WebView2::CoreProcessFailed_revoker CoreProcessFailed(auto_revoke_t, TypedEventHandler<WebView2, CoreWebView2ProcessFailedEventArgs const&> const& handler) const;
public event TypedEventHandler<WebView2,CoreWebView2ProcessFailedEventArgs> CoreProcessFailed;
function onCoreProcessFailed(eventArgs) { /* Your code */ }
webView2.addEventListener("coreprocessfailed", onCoreProcessFailed);
webView2.removeEventListener("coreprocessfailed", onCoreProcessFailed);
- or -
webView2.oncoreprocessfailed = onCoreProcessFailed;
Public Custom Event CoreProcessFailed As TypedEventHandler(Of WebView2, CoreWebView2ProcessFailedEventArgs) 

Ereignistyp

Gilt für: