C# Class 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
Datei anzeigen Open project: inthehand/Charming

Public Methods

Method Description
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.

Private Methods

Method Description
ToastNotifier ( ) : UIKit
ToastNotifier ( Windows notifier ) : UIKit

Method Details

AddToSchedule() public method

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

Hide() public method

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

RemoveFromSchedule() public method

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.
return void

Show() public method

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