ToastNotifier.RemoveFromSchedule(ScheduledToastNotification) Méthode
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.
Annule l’affichage planifié d’un scheduledToastNotification spécifié.
Important
Cette méthode est uniquement prise en charge dans les applications qui utilisent WinRT comme infrastructure d’application par défaut.
public:
virtual void RemoveFromSchedule(ScheduledToastNotification ^ scheduledToast) = RemoveFromSchedule;
void RemoveFromSchedule(ScheduledToastNotification const& scheduledToast);
public void RemoveFromSchedule(ScheduledToastNotification scheduledToast);
function removeFromSchedule(scheduledToast)
Public Sub RemoveFromSchedule (scheduledToast As ScheduledToastNotification)
Paramètres
- scheduledToast
- ScheduledToastNotification
Notification à supprimer de la planification.
Exemples
L’exemple suivant montre l’utilisation de la méthode RemoveFromSchedule.
var notifier = Notifications.ToastNotificationManager.createToastNotifier();
var scheduled = notifier.getScheduledToastNotifications();
for (var i = 0, len = scheduled.length; i < len; i++) {
// The itemId value is the unique ScheduledTileNotification.Id assigned to the
// notification when it was created.
if (scheduled[i].id === itemId) {
notifier.removeFromSchedule(scheduled[i]);
}
}
Remarques
Si vous souhaitez annuler une ou plusieurs notifications toast planifiées, vous pouvez utiliser la méthode GetScheduledToastNotifications pour obtenir la liste complète.