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
Показать файл Открыть проект

Открытые методы

Метод Описание
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