Ejemplo n.º 1
0
 public static WindowsPhoneTileNotification WithTag(this WindowsPhoneTileNotification n, object tag)
 {
     n.Tag = tag;
     return(n);
 }
Ejemplo n.º 2
0
 public static WindowsPhoneTileNotification WithTileId(this WindowsPhoneTileNotification n, string tileId)
 {
     n.TileId = tileId;
     return(n);
 }
Ejemplo n.º 3
0
 public static WindowsPhoneTileNotification ClearCount(this WindowsPhoneTileNotification n)
 {
     n.ClearCount = true;
     return(n);
 }
Ejemplo n.º 4
0
 public static WindowsPhoneTileNotification ClearTitle(this WindowsPhoneTileNotification n)
 {
     n.ClearTitle = true;
     return(n);
 }
Ejemplo n.º 5
0
 public static WindowsPhoneTileNotification WithTitle(this WindowsPhoneTileNotification n, string title)
 {
     n.Title = title;
     return(n);
 }
Ejemplo n.º 6
0
 public static WindowsPhoneTileNotification ClearBackBackgroundImage(this WindowsPhoneTileNotification n)
 {
     n.ClearBackBackgroundImage = true;
     return(n);
 }
Ejemplo n.º 7
0
 public static WindowsPhoneTileNotification WithBackTitle(this WindowsPhoneTileNotification n, string backTitle)
 {
     n.BackTitle = backTitle;
     return(n);
 }
Ejemplo n.º 8
0
 public static WindowsPhoneTileNotification WithCount(this WindowsPhoneTileNotification n, int count)
 {
     n.Count = count;
     return(n);
 }
Ejemplo n.º 9
0
 public static WindowsPhoneTileNotification WithBackgroundImage(this WindowsPhoneTileNotification n, string backgroundImage)
 {
     n.BackgroundImage = backgroundImage;
     return(n);
 }
Ejemplo n.º 10
0
 public static WindowsPhoneTileNotification WithBackContent(this WindowsPhoneTileNotification n, string backContent)
 {
     n.BackContent = backContent;
     return(n);
 }
Ejemplo n.º 11
0
 public static WindowsPhoneTileNotification ForOSVersion(this WindowsPhoneTileNotification n, WindowsPhoneDeviceOSVersion osVersion)
 {
     n.OSVersion = osVersion;
     return(n);
 }
Ejemplo n.º 12
0
 public static WindowsPhoneTileNotification WithBatchingInterval(this WindowsPhoneTileNotification n, BatchingInterval batchingInterval)
 {
     n.NotificationClass = batchingInterval;
     return(n);
 }
Ejemplo n.º 13
0
 public static WindowsPhoneTileNotification WithMessageID(this WindowsPhoneTileNotification n, Guid messageID)
 {
     n.MessageID = messageID;
     return(n);
 }
Ejemplo n.º 14
0
 public static WindowsPhoneTileNotification WithCallbackUri(this WindowsPhoneTileNotification n, Uri callbackUri)
 {
     n.CallbackURI = callbackUri.ToString();
     return(n);
 }
Ejemplo n.º 15
0
 public static WindowsPhoneTileNotification ForEndpointUri(this WindowsPhoneTileNotification n, Uri endpointUri)
 {
     n.EndPointUrl = endpointUri.ToString();
     return(n);
 }