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