UserWatcher.Removed Evento
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Aciona quando um usuário é removido da coleção de usuários retornados 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)