ToastNotifier.RemoveFromSchedule(ScheduledToastNotification) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 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 메서드를 사용하여 전체 목록을 가져올 수 있습니다.