public static ToastNotification SetTag(this ToastContentBuilder builder, String tag)
 {
     return(SetTag(builder.GetNotification(), tag));
 }
 public static ToastNotification SetGroup(this ToastContentBuilder builder, String group)
 {
     return(SetGroup(builder.GetNotification(), group));
 }
 public static ToastNotification SetPriority(this ToastContentBuilder builder, ToastNotificationPriority priority)
 {
     return(SetPriority(builder.GetNotification(), priority));
 }
 public static Task <NotifyMessage> ShowAsync(this ToastNotifier notifier, ToastContentBuilder builder, TimeSpan timeout, CancellationToken token)
 {
     return(ShowAsync(notifier, builder.GetNotification(), timeout, token));
 }
 public static ToastNotification SetData(this ToastContentBuilder builder, NotificationData data)
 {
     return(SetData(builder.GetNotification(), data));
 }
 public static Task <NotifyMessage> ShowAsync(this ToastContentBuilder builder, CancellationToken token)
 {
     return(ShowAsync(builder.GetNotification(), token));
 }
 public static Task <NotifyMessage> ShowAsync(this ToastContentBuilder builder, TimeSpan timeout)
 {
     return(ShowAsync(builder.GetNotification(), timeout));
 }
 public static ToastNotification SetFailedHandler(this ToastContentBuilder builder, TypedEventHandler <ToastNotification, ToastFailedEventArgs> failed)
 {
     return(SetFailedHandler(builder.GetNotification(), failed));
 }
 public static ToastNotification SetToastHideOnDismiss(this ToastContentBuilder builder, Boolean hide = true)
 {
     return(SetToastHideOnDismiss(builder.GetNotification(), hide));
 }
 public static ToastNotification SetActivatedHandler(this ToastContentBuilder builder, TypedEventHandler <ToastNotification, Object> activated)
 {
     return(SetActivatedHandler(builder.GetNotification(), activated));
 }
 public static ToastNotification SetDismissedHandler(this ToastContentBuilder builder, TypedEventHandler <ToastNotification, ToastDismissedEventArgs> dismissed)
 {
     return(SetDismissedHandler(builder.GetNotification(), dismissed));
 }
 public static ToastNotification SetExpiresOnReboot(this ToastContentBuilder builder, Boolean expires)
 {
     return(SetExpiresOnReboot(builder.GetNotification(), expires));
 }
 public static ToastNotification SetSuppressPopup(this ToastContentBuilder builder, Boolean suppress)
 {
     return(SetSuppressPopup(builder.GetNotification(), suppress));
 }
 public static ToastNotification SetRemoteId(this ToastContentBuilder builder, String id)
 {
     return(SetRemoteId(builder.GetNotification(), id));
 }
 public static ToastNotification SetNotificationMirroring(this ToastContentBuilder builder, NotificationMirroring mirroring)
 {
     return(SetNotificationMirroring(builder.GetNotification(), mirroring));
 }
 public static ToastNotification SetExpirationTime(this ToastContentBuilder builder, DateTimeOffset?offset)
 {
     return(SetExpirationTime(builder.GetNotification(), offset));
 }