Beispiel #1
0
 public static WindowsPhoneRawNotification WithRaw(this WindowsPhoneRawNotification n, string raw)
 {
     n.Raw = raw;
     return(n);
 }
Beispiel #2
0
 public static WindowsPhoneRawNotification WithTag(this WindowsPhoneRawNotification n, object tag)
 {
     n.Tag = tag;
     return(n);
 }
Beispiel #3
0
 public static WindowsPhoneRawNotification ForOSVersion(this WindowsPhoneRawNotification n, WindowsPhoneDeviceOSVersion osVersion)
 {
     n.OSVersion = osVersion;
     return(n);
 }
Beispiel #4
0
 public static WindowsPhoneRawNotification WithBatchingInterval(this WindowsPhoneRawNotification n, BatchingInterval batchingInterval)
 {
     n.NotificationClass = batchingInterval;
     return(n);
 }
Beispiel #5
0
 public static WindowsPhoneRawNotification WithMessageID(this WindowsPhoneRawNotification n, Guid messageID)
 {
     n.MessageID = messageID;
     return(n);
 }
Beispiel #6
0
 public static WindowsPhoneRawNotification WithCallbackUri(this WindowsPhoneRawNotification n, Uri callbackUri)
 {
     n.CallbackURI = callbackUri.ToString();
     return(n);
 }
Beispiel #7
0
 public static WindowsPhoneRawNotification ForEndpointUri(this WindowsPhoneRawNotification n, Uri endpointUri)
 {
     n.EndPointUrl = endpointUri.ToString();
     return(n);
 }