Freigeben über


RemoteSystemWatcher.EnumerationCompleted Ereignis

Definition

Dieses Ereignis wird ausgelöst, wenn der anfängliche Remotesystemermittlungsprozess abgeschlossen ist.

// Register
event_token EnumerationCompleted(TypedEventHandler<RemoteSystemWatcher, RemoteSystemEnumerationCompletedEventArgs const&> const& handler) const;

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

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

Ereignistyp

Windows-Anforderungen

Gerätefamilie
Windows 10, version 1803 (eingeführt in 10.0.17134.0)
API contract
Windows.Foundation.UniversalApiContract (eingeführt in v6.0)

Hinweise

Dieses Ereignis wird je nach Ermittlungstyp für unterschiedliche Kriterien ausgelöst, aber in jedem Fall soll es den Zeitpunkt bedeuten, zu dem alle verfügbaren Geräte erkannt wurden.

Gilt für: