AncsNotifier.MainPage.Show C# (CSharp) Method

Show() private method

private Show ( ToastContent content ) : void
content NotificationsExtensions.Toasts.ToastContent
return void
        private void Show(ToastContent content)
        {
            try
            {
                ToastNotificationManager.CreateToastNotifier().Show(new ToastNotification(content.GetXml()));
              
            }
            catch (Exception ex)
            {
                //yolo
            }
        }