次の方法で共有


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) 

イベントの種類

適用対象