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)