SystemUpdateManager.StateChanged Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
State property change notification event.
// 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)