Condividi tramite


ToastNotifier.RemoveFromSchedule(ScheduledToastNotification) Metodo

Definizione

Annulla la visualizzazione pianificata di un oggetto ScheduledToastNotification specificato.

Importante

Questo metodo è supportato solo nelle applicazioni che usano WinRT come framework applicazione predefinito.

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)

Parametri

scheduledToast
ScheduledToastNotification

Notifica da rimuovere dalla pianificazione.

Esempio

Nell'esempio seguente viene illustrato l'uso del metodo 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]);
    }
}

Commenti

Per annullare una o più notifiche popup pianificate, è possibile usare il metodo GetScheduledToastNotifications per ottenere l'elenco completo.

Si applica a