WebViewControl.NavigationStarting 이벤트

정의

컨트롤이 새 콘텐츠로 이동하기 전에 트리거되는 이벤트입니다.

자세한 내용은 Windows.Web.UI.IWebViewControl을 참조하세요.

// Register
event_token NavigationStarting(TypedEventHandler<IWebViewControl, WebViewControlNavigationStartingEventArgs const&> const& handler) const;

// Revoke with event_token
void NavigationStarting(event_token const* cookie) const;

// Revoke with event_revoker
WebViewControl::NavigationStarting_revoker NavigationStarting(auto_revoke_t, TypedEventHandler<IWebViewControl, WebViewControlNavigationStartingEventArgs const&> const& handler) const;
public event TypedEventHandler<IWebViewControl,WebViewControlNavigationStartingEventArgs> NavigationStarting;
function onNavigationStarting(eventArgs) { /* Your code */ }
webViewControl.addEventListener("navigationstarting", onNavigationStarting);
webViewControl.removeEventListener("navigationstarting", onNavigationStarting);
- or -
webViewControl.onnavigationstarting = onNavigationStarting;
Public Custom Event NavigationStarting As TypedEventHandler(Of IWebViewControl, WebViewControlNavigationStartingEventArgs) Implements NavigationStarting

이벤트 유형

구현

적용 대상