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