UserWatcher.Added Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Se activa cuando se agrega un usuario a la colección de usuarios devueltos por 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)