Compartir a través de


DnssdServiceWatcher.Added Evento

Definición

Evento que se desencadena cuando dnssdServiceWatcher ha agregado una instancia de detección de servicios DNS (DNS-SD) a su colección de instancias de servicio disponibles.

Nota:

DnssdServiceWatcher no se admite y puede modificarse o no estar disponible en el futuro. En su lugar, use la API Windows.Devices.Enumeration.

// Register
event_token Added(TypedEventHandler<DnssdServiceWatcher, DnssdServiceInstance const&> const& handler) const;

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

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

Tipo de evento

Se aplica a