Condividi tramite


ToastNotifier.GetScheduledToastNotifications Metodo

Definizione

Ottiene l'insieme di oggetti ScheduledToastNotification pianificati per la visualizzazione dell'app.

Importante

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

public:
 virtual IVectorView<ScheduledToastNotification ^> ^ GetScheduledToastNotifications() = GetScheduledToastNotifications;
IVectorView<ScheduledToastNotification> GetScheduledToastNotifications();
public IReadOnlyList<ScheduledToastNotification> GetScheduledToastNotifications();
function getScheduledToastNotifications()
Public Function GetScheduledToastNotifications () As IReadOnlyList(Of ScheduledToastNotification)

Restituisce

Raccolta di notifiche popup pianificate associate all'app associata a questo classificatore per la visualizzazione temporale.

Esempio

Nell'esempio seguente viene illustrato l'uso del metodo GetScheduledToastNotifications.

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]);
    }
}

Si applica a