다음을 통해 공유


IWebViewControl.UnsafeContentWarningDisplaying 이벤트

정의

IWebViewControl에 SmartScreen 필터에서 안전하지 않은 것으로 보고된 콘텐츠에 대한 경고 페이지가 표시되면 발생합니다.

// Register
event_token UnsafeContentWarningDisplaying(TypedEventHandler<IWebViewControl, IInspectable const&> const& handler) const;

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

// Revoke with event_revoker
IWebViewControl::UnsafeContentWarningDisplaying_revoker UnsafeContentWarningDisplaying(auto_revoke_t, TypedEventHandler<IWebViewControl, IInspectable const&> const& handler) const;
event TypedEventHandler<IWebViewControl,object> UnsafeContentWarningDisplaying;
function onUnsafeContentWarningDisplaying(eventArgs) { /* Your code */ }
iWebViewControl.addEventListener("unsafecontentwarningdisplaying", onUnsafeContentWarningDisplaying);
iWebViewControl.removeEventListener("unsafecontentwarningdisplaying", onUnsafeContentWarningDisplaying);
- or -
iWebViewControl.onunsafecontentwarningdisplaying = onUnsafeContentWarningDisplaying;
Event UnsafeContentWarningDisplaying As TypedEventHandler(Of IWebViewControl, Object) 

이벤트 유형

설명

이 이벤트는 경고 페이지가 나타날 때 발생합니다. 사용자가 계속 탐색하도록 선택할 경우 이후에 페이지로 이동할 때는 경고가 표시되지 않으며 이벤트도 발생하지 않습니다.

적용 대상