PnpObjectWatcher.Added Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Importante
Non è più consigliabile usare i tipi nello spazio dei nomi Windows.Devices.Enumeration.Pnp . I tipi nello spazio dei nomi Windows.Devices.Enumeration implementano invece un superset moderno e gestito meglio delle funzionalità di Windows.Devices.Enumeration.Pnp.
L'alternativa a PnpObjectType è l'enumerazione Windows.Devices.Enumeration.DeviceInformationKind , che è possibile passare come parametro alle API Windows.Devices.Enumeration . Ad esempio, anziché usare PnpObjectType quando crei un PnpObjectWatcher, usa DeviceInformationKind quando crei un DeviceWatcher.
Si verifica quando un PnpObject viene aggiunto all'insieme enumerato da PnpObjectWatcher.
// Register
event_token Added(TypedEventHandler<PnpObjectWatcher, PnpObject const&> const& handler) const;
// Revoke with event_token
void Added(event_token const* cookie) const;
// Revoke with event_revoker
PnpObjectWatcher::Added_revoker Added(auto_revoke_t, TypedEventHandler<PnpObjectWatcher, PnpObject const&> const& handler) const;
public event TypedEventHandler<PnpObjectWatcher,PnpObject> Added;
function onAdded(eventArgs) { /* Your code */ }
pnpObjectWatcher.addEventListener("added", onAdded);
pnpObjectWatcher.removeEventListener("added", onAdded);
- or -
pnpObjectWatcher.onadded = onAdded;
Public Custom Event Added As TypedEventHandler(Of PnpObjectWatcher, PnpObject)