RemoteSystemWatcher.RemoteSystemRemoved Ereignis
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Das Ereignis, das ausgelöst wird, wenn ein zuvor ermitteltes Remotesystem (Gerät) nicht mehr sichtbar ist.
// 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)
Ereignistyp
Windows-Anforderungen
App-Funktionen |
remoteSystem
|
Hinweise
Dieses Ereignis wird erst ausgelöst, nachdem ein Remotesystem nicht mehr über alle kategorien auffindbar ist, die durch den zugeordneten RemoteSystemDiscoveryTypeFilter angegeben werden.