/// <summary>
        /// Initializes a new instance of this type.
        /// </summary>
        /// <param name="sendPriority">The send priority of this message in the MPNS.</param>
        public RawPushNotificationMessage(MessageSendPriority sendPriority = MessageSendPriority.Normal)
            : base(sendPriority)
        {

        } 
 /// <summary>
 /// Initializes a new instance of the <see cref="TilePushNotificationMessage"/> class. 
 /// Initializes a new instance of this type.
 /// </summary>
 /// <param name="sendPriority">
 /// The send priority of this message in the MPNS.
 /// </param>
 public TilePushNotificationMessage(MessageSendPriority sendPriority)
     : base(sendPriority)
 {
 }
예제 #3
0
 /// <summary>
 /// Initializes a new instance of this type.
 /// </summary>
 /// <param name="sendPriority">The send priority of this message in the MPNS.</param>
 public TilePushNotificationMessage(MessageSendPriority sendPriority = MessageSendPriority.Normal)
     : base(sendPriority)
 {
 }
 /// <summary>
 /// Initializes a new instance of this type with <see cref="WindowsPhone.Recipes.Push.Messasges.MessageSendPriority.Normal"/> send priority.
 /// </summary>
 protected PushNotificationMessage(MessageSendPriority sendPriority = MessageSendPriority.Normal)
 {
     Id           = Guid.NewGuid();
     SendPriority = sendPriority;
     IsDirty      = true;
 }