DeviceWatcher.Updated 事件

定义

在枚举设备集合中更新设备时引发的事件。

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

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

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

事件类型

注解

注意

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

适用于