選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

30 行
376 B

  1. using System;
  2. namespace CI.WSANative.Notification
  3. {
  4. public class WSAPushNotificationChannel
  5. {
  6. public string Uri
  7. {
  8. get
  9. {
  10. return string.Empty;
  11. }
  12. }
  13. public DateTimeOffset ExpirationTime
  14. {
  15. get
  16. {
  17. return DateTimeOffset.MinValue;
  18. }
  19. }
  20. public void Close()
  21. {
  22. }
  23. public Action PushNotificationReceived;
  24. }
  25. }