다음을 통해 공유


ToastNotifier.RemoveFromSchedule(ScheduledToastNotification) 메서드

정의

지정된 ScheduledToastNotification의 예약된 표시를 취소합니다.

중요

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

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)

매개 변수

scheduledToast
ScheduledToastNotification

일정에서 제거할 알림입니다.

예제

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

설명

하나 이상의 예약된 알림 메시지를 취소하려면 GetScheduledToastNotifications 메서드를 사용하여 전체 목록을 가져올 수 있습니다.

적용 대상