Ejemplo n.º 1
0
 public static WindowsPhoneFlipTileNotification ClearCount(this WindowsPhoneFlipTileNotification n)
 {
     n.ClearCount = true;
     return(n);
 }
Ejemplo n.º 2
0
 public static WindowsPhoneFlipTileNotification ClearBackTitle(this WindowsPhoneFlipTileNotification n)
 {
     n.ClearBackTitle = true;
     return(n);
 }
Ejemplo n.º 3
0
 public static WindowsPhoneFlipTileNotification ClearWideBackContent(this WindowsPhoneFlipTileNotification n)
 {
     n.ClearWideBackContent = true;
     return(n);
 }
Ejemplo n.º 4
0
 public static WindowsPhoneFlipTileNotification WithBackgroundImage(this WindowsPhoneFlipTileNotification n, string backgroundImage)
 {
     n.BackgroundImage = backgroundImage;
     return(n);
 }
Ejemplo n.º 5
0
 public static WindowsPhoneFlipTileNotification WithWideBackBackgroundImage(this WindowsPhoneFlipTileNotification n, string wideBackBackgroundImage)
 {
     n.WideBackBackgroundImage = wideBackBackgroundImage;
     return(n);
 }
Ejemplo n.º 6
0
 public static WindowsPhoneFlipTileNotification WithCallbackUri(this WindowsPhoneFlipTileNotification n, Uri callbackUri)
 {
     n.CallbackURI = callbackUri.ToString();
     return(n);
 }
Ejemplo n.º 7
0
 public static WindowsPhoneFlipTileNotification WithSmallBackgroundImage(this WindowsPhoneFlipTileNotification n, string smallBackgroundImage)
 {
     n.SmallBackgroundImage = smallBackgroundImage;
     return(n);
 }
Ejemplo n.º 8
0
 public static WindowsPhoneFlipTileNotification WithBackTitle(this WindowsPhoneFlipTileNotification n, string backTitle)
 {
     n.BackTitle = backTitle;
     return(n);
 }
Ejemplo n.º 9
0
 public static WindowsPhoneFlipTileNotification WithBackContent(this WindowsPhoneFlipTileNotification n, string backContent)
 {
     n.BackContent = backContent;
     return(n);
 }
Ejemplo n.º 10
0
 public static WindowsPhoneFlipTileNotification WithTitle(this WindowsPhoneFlipTileNotification n, string title)
 {
     n.Title = title;
     return(n);
 }
Ejemplo n.º 11
0
 public static WindowsPhoneFlipTileNotification WithCount(this WindowsPhoneFlipTileNotification n, int count)
 {
     n.Count = count;
     return(n);
 }
Ejemplo n.º 12
0
 public static WindowsPhoneFlipTileNotification ForOSVersion(this WindowsPhoneFlipTileNotification n, WindowsPhoneDeviceOSVersion osVersion)
 {
     n.OSVersion = osVersion;
     return(n);
 }
Ejemplo n.º 13
0
 public static WindowsPhoneFlipTileNotification WithBatchingInterval(this WindowsPhoneFlipTileNotification n, BatchingInterval batchingInterval)
 {
     n.NotificationClass = batchingInterval;
     return(n);
 }
Ejemplo n.º 14
0
 public static WindowsPhoneFlipTileNotification WithMessageID(this WindowsPhoneFlipTileNotification n, Guid messageID)
 {
     n.MessageID = messageID;
     return(n);
 }
Ejemplo n.º 15
0
 public static WindowsPhoneFlipTileNotification ClearWideBackBackgroundImage(this WindowsPhoneFlipTileNotification n)
 {
     n.ClearWideBackBackgroundImage = true;
     return(n);
 }
Ejemplo n.º 16
0
 public static WindowsPhoneFlipTileNotification WithWideBackContent(this WindowsPhoneFlipTileNotification n, string wideBackContent)
 {
     n.WideBackContent = wideBackContent;
     return(n);
 }
Ejemplo n.º 17
0
 public static WindowsPhoneFlipTileNotification WithTag(this WindowsPhoneFlipTileNotification n, object tag)
 {
     n.Tag = tag;
     return(n);
 }
Ejemplo n.º 18
0
 public static WindowsPhoneFlipTileNotification ForEndpointUri(this WindowsPhoneFlipTileNotification n, Uri endpointUri)
 {
     n.EndPointUrl = endpointUri.ToString();
     return(n);
 }