DeviceWatcher.Removed 事件

定义

从枚举设备集合中删除设备时引发的事件。

// Register
event_token Removed(TypedEventHandler<DeviceWatcher, DeviceInformationUpdate const&> const& handler) const;

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

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

事件类型

注解

注意

应用必须订阅所有 添加、删除和 更新 的事件,以便当设备添加、删除或更新时收到通知。 如果应用仅处理 添加 的事件,如果在初始设备枚举完成后将设备添加到系统,则它将不会收到更新。

适用于

另请参阅