次の方法で共有


DnssdServiceWatcher.EnumerationCompleted イベント

定義

DnssdServiceWatcher が使用可能な DNS サービス探索 (DNS-SD) サービス インスタンスの列挙を完了したときにトリガーされるイベント。

注意

DnssdServiceWatcher はサポートされていないため、今後変更または使用できなくなる可能性があります。 代わりに、Windows.Devices.Enumeration API を使用します。

// Register
event_token EnumerationCompleted(TypedEventHandler<DnssdServiceWatcher, IInspectable const&> const& handler) const;

// Revoke with event_token
void EnumerationCompleted(event_token const* cookie) const;

// Revoke with event_revoker
DnssdServiceWatcher::EnumerationCompleted_revoker EnumerationCompleted(auto_revoke_t, TypedEventHandler<DnssdServiceWatcher, IInspectable const&> const& handler) const;
public event TypedEventHandler<DnssdServiceWatcher,object> EnumerationCompleted;
function onEnumerationCompleted(eventArgs) { /* Your code */ }
dnssdServiceWatcher.addEventListener("enumerationcompleted", onEnumerationCompleted);
dnssdServiceWatcher.removeEventListener("enumerationcompleted", onEnumerationCompleted);
- or -
dnssdServiceWatcher.onenumerationcompleted = onEnumerationCompleted;
Public Custom Event EnumerationCompleted As TypedEventHandler(Of DnssdServiceWatcher, Object) 

イベントの種類

適用対象