UserWatcher.Removed 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 quita un usuario de la colección de usuarios devuelto por 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)