UserWatcher.Added 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 added to the collection of users returned by User.FindAllAsync.
// Register
event_token Added(TypedEventHandler<UserWatcher, UserChangedEventArgs const&> const& handler) const;
// Revoke with event_token
void Added(event_token const* cookie) const;
// Revoke with event_revoker
UserWatcher::Added_revoker Added(auto_revoke_t, TypedEventHandler<UserWatcher, UserChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<UserWatcher,UserChangedEventArgs> Added;
function onAdded(eventArgs) { /* Your code */ }
userWatcher.addEventListener("added", onAdded);
userWatcher.removeEventListener("added", onAdded);
- or -
userWatcher.onadded = onAdded;
Public Custom Event Added As TypedEventHandler(Of UserWatcher, UserChangedEventArgs)