25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

28 satır
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. }