WebView.SeparateProcessLost イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
WebView が SeparateProcess の ExecutionMode で実行され、個別のプロセスが失われた場合に発生します。
// Register
event_token SeparateProcessLost(TypedEventHandler<WebView, WebViewSeparateProcessLostEventArgs const&> const& handler) const;
// Revoke with event_token
void SeparateProcessLost(event_token const* cookie) const;
// Revoke with event_revoker
WebView::SeparateProcessLost_revoker SeparateProcessLost(auto_revoke_t, TypedEventHandler<WebView, WebViewSeparateProcessLostEventArgs const&> const& handler) const;
public event TypedEventHandler<WebView,WebViewSeparateProcessLostEventArgs> SeparateProcessLost;
function onSeparateProcessLost(eventArgs) { /* Your code */ }
webView.addEventListener("separateprocesslost", onSeparateProcessLost);
webView.removeEventListener("separateprocesslost", onSeparateProcessLost);
- or -
webView.onseparateprocesslost = onSeparateProcessLost;
Public Custom Event SeparateProcessLost As TypedEventHandler(Of WebView, WebViewSeparateProcessLostEventArgs)
イベントの種類
Windows の要件
デバイス ファミリ |
Windows 10, version 1803 (10.0.17134.0 で導入)
|
API contract |
Windows.Foundation.UniversalApiContract (v6.0 で導入)
|
注釈
詳細については、WebView クラス解説の 実行モード に関するセクションを参照してください。