RemoteSystemWatcher.RemoteSystemUpdated Событие

Определение

Возникает, когда удаленная система (устройство), обнаруженная ранее в этом сеансе обнаружения, изменяется с прокси-сервера, подключенного к облаку, или наоборот. Он также возникает, когда удаленная система изменяет одно из своих отслеживаемых свойств (см. свойства класса RemoteSystem ).

// Register
event_token RemoteSystemUpdated(TypedEventHandler<RemoteSystemWatcher, RemoteSystemUpdatedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
RemoteSystemWatcher::RemoteSystemUpdated_revoker RemoteSystemUpdated(auto_revoke_t, TypedEventHandler<RemoteSystemWatcher, RemoteSystemUpdatedEventArgs const&> const& handler) const;
public event TypedEventHandler<RemoteSystemWatcher,RemoteSystemUpdatedEventArgs> RemoteSystemUpdated;
function onRemoteSystemUpdated(eventArgs) { /* Your code */ }
remoteSystemWatcher.addEventListener("remotesystemupdated", onRemoteSystemUpdated);
remoteSystemWatcher.removeEventListener("remotesystemupdated", onRemoteSystemUpdated);
- or -
remoteSystemWatcher.onremotesystemupdated = onRemoteSystemUpdated;
Public Custom Event RemoteSystemUpdated As TypedEventHandler(Of RemoteSystemWatcher, RemoteSystemUpdatedEventArgs) 

Тип события

Требования к Windows

Возможности приложения
remoteSystem

Применяется к