SystemUpdateManager.StateChanged Evento
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Evento de notificação de alteração de propriedade de estado.
// Register
static event_token StateChanged(EventHandler<IInspectable> const& handler) const;
// Revoke with event_token
static void StateChanged(event_token const* cookie) const;
// Revoke with event_revoker
static SystemUpdateManager::StateChanged_revoker StateChanged(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
public static event System.EventHandler<object> StateChanged;
function onStateChanged(eventArgs) { /* Your code */ }
Windows.System.Update.SystemUpdateManager.addEventListener("statechanged", onStateChanged);
Windows.System.Update.SystemUpdateManager.removeEventListener("statechanged", onStateChanged);
- or -
Windows.System.Update.SystemUpdateManager.onstatechanged = onStateChanged;
Public Shared Custom Event StateChanged As EventHandler(Of Object)