UserWatcher.Removed Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Fires when a user is removed from the collection of users returned by User.FindAllAsync.
// Register
event_token Removed(TypedEventHandler<UserWatcher, UserChangedEventArgs const&> const& handler) const;
// Revoke with event_token
void Removed(event_token const* cookie) const;
// Revoke with event_revoker
UserWatcher::Removed_revoker Removed(auto_revoke_t, TypedEventHandler<UserWatcher, UserChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<UserWatcher,UserChangedEventArgs> Removed;
function onRemoved(eventArgs) { /* Your code */ }
userWatcher.addEventListener("removed", onRemoved);
userWatcher.removeEventListener("removed", onRemoved);
- or -
userWatcher.onremoved = onRemoved;
Public Custom Event Removed As TypedEventHandler(Of UserWatcher, UserChangedEventArgs)