다음을 통해 공유


ToastNotifier.AddToSchedule(ScheduledToastNotification) 메서드

정의

Windows에서 나중에 표시 할 수 있는 ScheduledToastNotification 을 추가합니다.

중요

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

public:
 virtual void AddToSchedule(ScheduledToastNotification ^ scheduledToast) = AddToSchedule;
void AddToSchedule(ScheduledToastNotification const& scheduledToast);
public void AddToSchedule(ScheduledToastNotification scheduledToast);
function addToSchedule(scheduledToast)
Public Sub AddToSchedule (scheduledToast As ScheduledToastNotification)

매개 변수

scheduledToast
ScheduledToastNotification

콘텐츠 및 타이밍 지침을 포함하는 예약된 알림 메시지입니다.

설명

이 메서드는 알림 메시지를 일정에 전달하지만 알림이 표시되어야 하는 시간을 지정하지는 않습니다. 이 정보는 ScheduledToastNotification에 포함되어 있습니다.

AddToSchedule을 호출할 때 다음 예외를 처리해야 합니다.

  • 예외: System.Exception: 'Not enough quota is available to process this command. (Exception from HRESULT: 0x80070718)'
  • 가능한 원인: 예약된 알림의 최대 허용 횟수를 초과했습니다.

수정: 4096개 이상의 알림을 예약하려고 하면 ToastNotifier.addToSchedule이 실패합니다. 예약된 알림 수를 줄입니다.

  • 가능한 원인: 알림은 현재 시스템 클록 시간을 기준으로 과거 시간 동안 예약됩니다.

수정:ScheduledToastNotification 에 지정된 예약된 알림 시간이 나중에 있는지 확인합니다. 시스템 클록 시간을 검사합니다.

적용 대상