Esempio n. 1
0
 /// <summary>
 ///     The make.
 /// </summary>
 /// <param name="content">
 ///     The content.
 /// </param>
 /// <returns>
 ///     The <see cref="ToastContent" />.
 /// </returns>
 public static ToastContent MakeText(string content)
 {
     instance = new ToastContent(content);
     return(instance);
 }
Esempio n. 2
0
 /// <summary>
 ///     The make func.
 /// </summary>
 /// <param name="content">
 ///     The content.
 /// </param>
 /// <returns>
 ///     The <see cref="ToastContent" />.
 /// </returns>
 public static ToastContent MakeFunc(string content)
 {
     instance = new ToastContent(content, true);
     return(instance);
 }