DnssdServiceWatcher.Stopped Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Event triggered when an in-progress enumeration has been stopped.
Note
DnssdServiceWatcher is not supported and may be altered or unavailable in the future. Instead, use the Windows.Devices.Enumeration API.
// Register
event_token Stopped(TypedEventHandler<DnssdServiceWatcher, IInspectable const&> const& handler) const;
// Revoke with event_token
void Stopped(event_token const* cookie) const;
// Revoke with event_revoker
DnssdServiceWatcher::Stopped_revoker Stopped(auto_revoke_t, TypedEventHandler<DnssdServiceWatcher, IInspectable const&> const& handler) const;
public event TypedEventHandler<DnssdServiceWatcher,object> Stopped;
function onStopped(eventArgs) { /* Your code */ }
dnssdServiceWatcher.addEventListener("stopped", onStopped);
dnssdServiceWatcher.removeEventListener("stopped", onStopped);
- or -
dnssdServiceWatcher.onstopped = onStopped;
Public Custom Event Stopped As TypedEventHandler(Of DnssdServiceWatcher, Object)