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