RemoteSystemWatcher.RemoteSystemRemoved Kejadian

Definisi

Peristiwa yang dinaikkan ketika sistem jarak jauh (perangkat) yang ditemukan sebelumnya tidak lagi terlihat.

// Register
event_token RemoteSystemRemoved(TypedEventHandler<RemoteSystemWatcher, RemoteSystemRemovedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
RemoteSystemWatcher::RemoteSystemRemoved_revoker RemoteSystemRemoved(auto_revoke_t, TypedEventHandler<RemoteSystemWatcher, RemoteSystemRemovedEventArgs const&> const& handler) const;
public event TypedEventHandler<RemoteSystemWatcher,RemoteSystemRemovedEventArgs> RemoteSystemRemoved;
function onRemoteSystemRemoved(eventArgs) { /* Your code */ }
remoteSystemWatcher.addEventListener("remotesystemremoved", onRemoteSystemRemoved);
remoteSystemWatcher.removeEventListener("remotesystemremoved", onRemoteSystemRemoved);
- or -
remoteSystemWatcher.onremotesystemremoved = onRemoteSystemRemoved;
Public Custom Event RemoteSystemRemoved As TypedEventHandler(Of RemoteSystemWatcher, RemoteSystemRemovedEventArgs) 

Jenis Acara

Persyaratan Windows

Kemampuan aplikasi
remoteSystem

Keterangan

Kejadian ini dimunculkan hanya setelah sistem jarak jauh berhenti ditemukan di semua kategori yang ditentukan oleh RemoteSystemDiscoveryTypeFilter terkait.

Berlaku untuk