using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace WindowsPhone.Recipes.Push.Messasges { /// /// Microsoft Push Notification Service notification request status. /// public enum NotificationStatus { /// The request is not applicable. NotApplicable, /// The notification request was accepted. Received, /// Queue overflow. The Push Notification Service should re-send the notification later. QueueFull, /// The push notification was suppressed by the Push Notification Service. Suppressed, /// The push notification was dropped by the Push Notification Service. Dropped, } }