Share via


WebAccountMonitor.Removed イベント

定義

監視対象の 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) 

イベントの種類

適用対象