C# Class InTheHand.UI.Notifications.ToastNotificationCreator

Simplifies creation of toasts without the need to build XML documents.
PlatformVersion supported AndroidAndroid 4.4 and later iOSiOS 9.0 and later 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
CreateScheduledToastNotification ( string content, string title, DateTimeOffset deliveryTime ) : ScheduledToastNotification

Creates a scheduled toast notification with the required values.

CreateToastNotification ( string content, string title ) : ToastNotification

Creates a toast notification with the required values.

Method Details

CreateScheduledToastNotification() public static method

Creates a scheduled toast notification with the required values.
public static CreateScheduledToastNotification ( string content, string title, DateTimeOffset deliveryTime ) : ScheduledToastNotification
content string Text content.
title string Toast title.
deliveryTime DateTimeOffset When to display the toast.
return ScheduledToastNotification

CreateToastNotification() public static method

Creates a toast notification with the required values.
public static CreateToastNotification ( string content, string title ) : ToastNotification
content string Text content.
title string Toast title.
return ToastNotification