예제 #1
0
 public static WindowsPhoneIconicTileNotification WithTag(this WindowsPhoneIconicTileNotification n, object tag)
 {
     n.Tag = tag;
     return(n);
 }
예제 #2
0
 public static WindowsPhoneIconicTileNotification ClearIconImage(this WindowsPhoneIconicTileNotification n)
 {
     n.ClearIconImage = true;
     return(n);
 }
예제 #3
0
 public static WindowsPhoneIconicTileNotification ClearBackgroundColor(this WindowsPhoneIconicTileNotification n)
 {
     n.ClearBackgroundColor = true;
     return(n);
 }
예제 #4
0
 public static WindowsPhoneIconicTileNotification ClearWideContent3(this WindowsPhoneIconicTileNotification n)
 {
     n.ClearWideContent3 = true;
     return(n);
 }
예제 #5
0
 public static WindowsPhoneIconicTileNotification ClearCount(this WindowsPhoneIconicTileNotification n)
 {
     n.ClearCount = true;
     return(n);
 }
예제 #6
0
 public static WindowsPhoneIconicTileNotification WithIconImage(this WindowsPhoneIconicTileNotification n, string iconImage)
 {
     n.IconImage = iconImage;
     return(n);
 }
예제 #7
0
 public static WindowsPhoneIconicTileNotification WithBackgroundColor(this WindowsPhoneIconicTileNotification n, string backgroundColor)
 {
     n.BackgroundColor = backgroundColor;
     return(n);
 }
예제 #8
0
 public static WindowsPhoneIconicTileNotification WithWideContent3(this WindowsPhoneIconicTileNotification n, string wideContent3)
 {
     n.WideContent3 = wideContent3;
     return(n);
 }
예제 #9
0
 public static WindowsPhoneIconicTileNotification WithSmallIconImage(this WindowsPhoneIconicTileNotification n, string smallIconImage)
 {
     n.SmallIconImage = smallIconImage;
     return(n);
 }
예제 #10
0
 public static WindowsPhoneIconicTileNotification WithTitle(this WindowsPhoneIconicTileNotification n, string title)
 {
     n.Title = title;
     return(n);
 }
예제 #11
0
 public static WindowsPhoneIconicTileNotification WithCount(this WindowsPhoneIconicTileNotification n, int count)
 {
     n.Count = count;
     return(n);
 }
예제 #12
0
 public static WindowsPhoneIconicTileNotification ForOSVersion(this WindowsPhoneIconicTileNotification n, WindowsPhoneDeviceOSVersion osVersion)
 {
     n.OSVersion = osVersion;
     return(n);
 }
예제 #13
0
 public static WindowsPhoneIconicTileNotification WithBatchingInterval(this WindowsPhoneIconicTileNotification n, BatchingInterval batchingInterval)
 {
     n.NotificationClass = batchingInterval;
     return(n);
 }
예제 #14
0
 public static WindowsPhoneIconicTileNotification WithMessageID(this WindowsPhoneIconicTileNotification n, Guid messageID)
 {
     n.MessageID = messageID;
     return(n);
 }
예제 #15
0
 public static WindowsPhoneIconicTileNotification WithCallbackUri(this WindowsPhoneIconicTileNotification n, Uri callbackUri)
 {
     n.CallbackURI = callbackUri.ToString();
     return(n);
 }
예제 #16
0
 public static WindowsPhoneIconicTileNotification ForEndpointUri(this WindowsPhoneIconicTileNotification n, Uri endpointUri)
 {
     n.EndPointUrl = endpointUri.ToString();
     return(n);
 }