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)