C# 클래스 InTheHand.UI.Notifications.ToastNotifier

Raises a toast notification to the specific app to which the ToastNotifier is bound. This class also lets you schedule and remove toast notifications.
PlatformVersion supported AndroidAndroid 4.4 and later iOSiOS 9.0 and later TizenTizen 3.0 Windows UWPWindows 10 Windows StoreWindows 8.1 or later Windows Phone StoreWindows Phone 8.1 or later Windows Phone SilverlightWindows Phone 8.1 or later
파일 보기 프로젝트 열기: inthehand/Charming

공개 메소드들

메소드 설명
AddToSchedule ( ScheduledToastNotification scheduledToast ) : void

Adds a ScheduledToastNotification for later display.

Hide ( ToastNotification notification ) : void

Hides a toast notification.

RemoveFromSchedule ( ScheduledToastNotification scheduledToast ) : void

Cancels the scheduled display of a specified ScheduledToastNotification.

Show ( ToastNotification notification ) : void

Shows a toast notification.

비공개 메소드들

메소드 설명
ToastNotifier ( ) : UIKit
ToastNotifier ( Windows notifier ) : UIKit

메소드 상세

AddToSchedule() 공개 메소드

Adds a ScheduledToastNotification for later display.
public AddToSchedule ( ScheduledToastNotification scheduledToast ) : void
scheduledToast ScheduledToastNotification The scheduled toast notification, which includes its content and timing instructions.
리턴 void

Hide() 공개 메소드

Hides a toast notification.
public Hide ( ToastNotification notification ) : void
notification ToastNotification The object that supplies the new XML definition for the toast.
리턴 void

RemoveFromSchedule() 공개 메소드

Cancels the scheduled display of a specified ScheduledToastNotification.
public RemoveFromSchedule ( ScheduledToastNotification scheduledToast ) : void
scheduledToast ScheduledToastNotification The scheduled toast notification, which includes its content and timing instructions.
리턴 void

Show() 공개 메소드

Shows a toast notification.
public Show ( ToastNotification notification ) : void
notification ToastNotification The object that supplies the new XML definition for the toast.
리턴 void