Compartir a través de


ToastNotifier.GetScheduledToastNotifications Método

Definición

Obtiene la colección de objetos ScheduledToastNotification que esta aplicación ha programado para su presentación.

Importante

Este método solo se admite en aplicaciones que usan WinRT como marco de aplicación predeterminado.

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

Devoluciones

La colección de notificaciones del sistema programadas que la aplicación enlazada a este notificador ha programado para la presentación con tiempo.

Ejemplos

En el ejemplo siguiente se muestra el uso del método 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]);
    }
}

Se aplica a