public static void SendToast(string text, TimeSpan time) { ToastService ts = new ToastService(text, time); var task = ts.ShowAsync(); }
public static void SendToast(string text, int timeInMill) { ToastService ts = new ToastService(text, TimeSpan.FromMilliseconds(timeInMill)); var task = ts.ShowAsync(); }
public static void SendToast(string text) { ToastService ts = new ToastService(text); var task = ts.ShowAsync(); }