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