次の方法で共有


IWebViewControl.UnsafeContentWarningDisplaying イベント

定義

SmartScreen フィルターによって安全でないと報告されたコンテンツの警告ページが IWebViewControl に表示されたときに発生します。

// 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) 

イベントの種類

注釈

このイベントは、警告ページが表示されたときに発生します。 ユーザーがナビゲーションの続行を選んだ場合は、そのページへの移動では以降、警告が表示されたり、イベントが発されたりすることはありません。

適用対象