다음을 통해 공유


ToastNotifier.GetScheduledToastNotifications 메서드

정의

이 앱이 표시 되도록 예약한 ScheduledToastNotification 개체의 컬렉션을 가져옵니다.

중요

이 메서드는 WinRT를 기본 애플리케이션 프레임워크로 사용하는 애플리케이션에서만 지원됩니다.

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

반환

이 알림에 바인딩된 앱이 시간 제한 표시를 위해 예약한 예약된 알림 메시지의 컬렉션입니다.

예제

다음 예제에서는 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]);
    }
}

적용 대상