IWebViewControl.NavigationCompleted イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
IWebViewControl が現在のコンテンツの読み込みを完了したとき、またはナビゲーションに失敗した場合に発生します。
// Register
event_token NavigationCompleted(TypedEventHandler<IWebViewControl, WebViewControlNavigationCompletedEventArgs const&> const& handler) const;
// Revoke with event_token
void NavigationCompleted(event_token const* cookie) const;
// Revoke with event_revoker
IWebViewControl::NavigationCompleted_revoker NavigationCompleted(auto_revoke_t, TypedEventHandler<IWebViewControl, WebViewControlNavigationCompletedEventArgs const&> const& handler) const;
event TypedEventHandler<IWebViewControl,WebViewControlNavigationCompletedEventArgs> NavigationCompleted;
function onNavigationCompleted(eventArgs) { /* Your code */ }
iWebViewControl.addEventListener("navigationcompleted", onNavigationCompleted);
iWebViewControl.removeEventListener("navigationcompleted", onNavigationCompleted);
- or -
iWebViewControl.onnavigationcompleted = onNavigationCompleted;
Event NavigationCompleted As TypedEventHandler(Of IWebViewControl, WebViewControlNavigationCompletedEventArgs)
イベントの種類
注釈
WebView ナビゲーション イベントは、次の順序で発生します。
- NavigationStarting
- ContentLoading
- DOMContentLoaded
- NavigationCompleted
同様のイベントは、WebView コンテンツ内の iframe ごとに同じ順序で発生します。
- FrameNavigationStarting
- FrameContentLoading
- FrameDOMContentLoaded
- FrameNavigationCompleted