DnssdServiceWatcher.Stopped 事件

定義

停止進行中列舉時所觸發的事件。

注意

不支援 DnssdServiceWatcher,未來可能會變更或無法使用。 請改用 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) 

事件類型

適用於