WebView2.CoreProcessFailed イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
コア WebView2 プロセスが失敗したときに発生します。
// 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)