Compartilhar via


DnssdServiceWatcher.Added Evento

Definição

Evento que é disparado quando um DnssdServiceWatcher adiciona uma instância DNS-SD (Descoberta de Serviço DNS) à coleção de instâncias de serviço disponíveis.

Observação

Não há suporte para DnssdServiceWatcher e pode ser alterado ou indisponível no futuro. Em vez disso, use a 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

Aplica-se a