25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

28 lines
703 B

  1. using System;
  2. namespace CI.WSANative.Notification
  3. {
  4. public static class WSANativeNotification
  5. {
  6. public static void ShowToastNotification(string title, string text, string tag, Uri image = null)
  7. {
  8. }
  9. public static void ShowScheduledToastNotification(string title, string text, DateTime deliveryTime, string tag, Uri image = null)
  10. {
  11. }
  12. public static void RemoveToastNotification(string tag)
  13. {
  14. }
  15. public static void CreatePushNotificationChannel(Action<WSAPushNotificationChannel> response)
  16. {
  17. }
  18. public static void SendPushNotificationUriToServer(string serverUrl, string channelUri, string authorisation, Action<bool, string> response)
  19. {
  20. }
  21. }
  22. }