BuildIt.Bot.Client.Impl.UWP.BotClientApplicationBase.TryCleaningToastNotificationHistory C# (CSharp) Method

TryCleaningToastNotificationHistory() private method

private TryCleaningToastNotificationHistory ( ) : bool
return bool
        private bool TryCleaningToastNotificationHistory()
        {
            try
            {
                var history = ToastNotificationManager.History;
                history.Clear();
            }
            catch (Exception e)
            {
                Debug.WriteLine(e);
            }

            return false;
        }
    }