NotificationStatus.cs 827 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace WindowsPhone.Recipes.Push.Messasges
  6. {
  7. /// <summary>
  8. /// Microsoft Push Notification Service notification request status.
  9. /// </summary>
  10. public enum NotificationStatus
  11. {
  12. /// <value>The request is not applicable.</value>
  13. NotApplicable,
  14. /// <value>The notification request was accepted.</value>
  15. Received,
  16. /// <value>Queue overflow. The Push Notification Service should re-send the notification later.</value>
  17. QueueFull,
  18. /// <value>The push notification was suppressed by the Push Notification Service.</value>
  19. Suppressed,
  20. /// <value>The push notification was dropped by the Push Notification Service.</value>
  21. Dropped,
  22. }
  23. }