DeviceWatcher.Added 事件

定义

将设备添加到 DeviceWatcher 枚举的集合时引发的事件。

// Register
event_token Added(TypedEventHandler<DeviceWatcher, DeviceInformation const&> const& handler) const;

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

// Revoke with event_revoker
DeviceWatcher::Added_revoker Added(auto_revoke_t, TypedEventHandler<DeviceWatcher, DeviceInformation const&> const& handler) const;
public event TypedEventHandler<DeviceWatcher,DeviceInformation> Added;
function onAdded(eventArgs) { /* Your code */ }
deviceWatcher.addEventListener("added", onAdded);
deviceWatcher.removeEventListener("added", onAdded);
- or -
deviceWatcher.onadded = onAdded;
Public Custom Event Added As TypedEventHandler(Of DeviceWatcher, DeviceInformation) 

事件类型

注解

注意

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

适用于

另请参阅