PowerGridForecast.ForecastUpdated Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Événement pour avertir les abonnés lorsqu’une nouvelle charge utile de prévision est prête. Lorsque votre application reçoit cette notification, vous devez appeler GetForecast.
// Register
static event_token ForecastUpdated(EventHandler<IInspectable> const& handler) const;
// Revoke with event_token
static void ForecastUpdated(event_token const* cookie) const;
// Revoke with event_revoker
static PowerGridForecast::ForecastUpdated_revoker ForecastUpdated(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
public static event System.EventHandler<object> ForecastUpdated;
function onForecastUpdated(eventArgs) { /* Your code */ }
Windows.Devices.Power.PowerGridForecast.addEventListener("forecastupdated", onForecastUpdated);
Windows.Devices.Power.PowerGridForecast.removeEventListener("forecastupdated", onForecastUpdated);
- or -
Windows.Devices.Power.PowerGridForecast.onforecastupdated = onForecastUpdated;
Public Shared Custom Event ForecastUpdated As EventHandler(Of Object)