如何清除Microsoft App Center上次会话崩溃报告?

时间:2019-03-08 10:09:47

标签: c# xamarin.forms visual-studio-app-center

在我的Xamarin.Forms应用程序中,我正在检查应用程序启动时是否意外关闭:

if (Crashes.HasCrashedInLastSessionAsync().Result)
{
      var report = Crashes.GetLastSessionCrashReportAsync().Result;
      HandleException("Crash report", report.Exception);
}

启动应用程序时,发生未处理的异常后, HasCrashedInLastSessionAsync 方法始终返回true。

我现在的问题是:如何手动清除上次会话崩溃报告?

0 个答案:

没有答案