DnssdServiceWatcher.Added Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
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)