WebAccountMonitor.Removed イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
監視対象の WebAccount が削除されると発生します。
// Register
event_token Removed(TypedEventHandler<WebAccountMonitor, WebAccountEventArgs const&> const& handler) const;
// Revoke with event_token
void Removed(event_token const* cookie) const;
// Revoke with event_revoker
WebAccountMonitor::Removed_revoker Removed(auto_revoke_t, TypedEventHandler<WebAccountMonitor, WebAccountEventArgs const&> const& handler) const;
public event TypedEventHandler<WebAccountMonitor,WebAccountEventArgs> Removed;
function onRemoved(eventArgs) { /* Your code */ }
webAccountMonitor.addEventListener("removed", onRemoved);
webAccountMonitor.removeEventListener("removed", onRemoved);
- or -
webAccountMonitor.onremoved = onRemoved;
Public Custom Event Removed As TypedEventHandler(Of WebAccountMonitor, WebAccountEventArgs)