|
- using System;
-
- namespace CI.WSANative.Notification
- {
- public static class WSAScheduledNotifications
- {
- public static void CancelAllNotifications()
- {
- WSAScheduledNotifications.CancelAllToastNotifications();
- WSAScheduledNotifications.ClearAllTileNotifications();
- WSAScheduledNotifications.CancelAllTileNotifications();
- }
-
- public static void ScheduleToastNotification(string text, DateTime deliveryTime, Uri image = null)
- {
- }
-
- public static void CancelAllToastNotifications()
- {
- }
-
- public static void ScheduleTileNotification(string text, DateTime deliveryTime)
- {
- }
-
- private static void CancelAllTileNotifications()
- {
- }
-
- private static void ClearAllTileNotifications()
- {
- }
-
- private const string PeekLogoWide = "ms-appx:///Assets/Wide310x150Logo.png";
-
- private const string PeekLogoSquare = "ms-appx:///Assets/Square150x150Logo.png";
-
- private const string SmallLogo = "ms-appx:///Assets/Square44x44Logo.png";
- }
- }
|