Compartilhar via


PnpObjectWatcher.Removed Evento

Definição

Importante

Não recomendamos mais que você use os tipos no namespace Windows.Devices.Enumeration.Pnp . Em vez disso, os tipos no namespace Windows.Devices.Enumeration implementam um superconjunto moderno e melhor mantido da funcionalidade do Windows.Devices.Enumeration.Pnp.

A alternativa a PnpObjectType é a enumeração Windows.Devices.Enumeration.DeviceInformationKind , que você pode passar como um parâmetro para AS APIs Windows.Devices.Enumeration . Por exemplo, em vez de usar PnpObjectType ao criar um PnpObjectWatcher, use DeviceInformationKind ao criar um DeviceWatcher.

Ocorre quando um PnpObject é removido da coleção enumerada pelo PnpObjectWatcher.

// Register
event_token Removed(TypedEventHandler<PnpObjectWatcher, PnpObjectUpdate const&> const& handler) const;

// Revoke with event_token
void Removed(event_token const* cookie) const;

// Revoke with event_revoker
PnpObjectWatcher::Removed_revoker Removed(auto_revoke_t, TypedEventHandler<PnpObjectWatcher, PnpObjectUpdate const&> const& handler) const;
public event TypedEventHandler<PnpObjectWatcher,PnpObjectUpdate> Removed;
function onRemoved(eventArgs) { /* Your code */ }
pnpObjectWatcher.addEventListener("removed", onRemoved);
pnpObjectWatcher.removeEventListener("removed", onRemoved);
- or -
pnpObjectWatcher.onremoved = onRemoved;
Public Custom Event Removed As TypedEventHandler(Of PnpObjectWatcher, PnpObjectUpdate) 

Tipo de evento

Aplica-se a