MessageSendPriority.cs 702 B

12345678910111213141516171819202122
  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. /// Represents the priorities of which the Push Notification Service sends the message.
  9. /// </summary>
  10. public enum MessageSendPriority
  11. {
  12. /// <value>The message should be delivered by the Push Notification Service immediately.</value>
  13. High = 0,
  14. /// <value>The message should be delivered by the Push Notification Service within 450 seconds.</value>
  15. Normal = 1,
  16. /// <value>The message should be delivered by the Push Notification Service within 900 seconds.</value>
  17. Low = 2
  18. }
  19. }