- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图向我们的应用程序添加一些分析和崩溃日志记录,因此我正在实现应用程序中心,因为它看起来非常合适。我们正在运行针对 iOS/Android/UWP 的 xamarin 表单。
我正在尝试在我们的共享项目中添加一些异常处理,以将异常信息抛出到 appCenter。当我将以下内容添加到我们的一个异常(exception)中时:
Crashes.TrackError(ex);
'Crashes.TrackError(Exception, IDictionary<string, string>)' is obsolete: 'This does not exist in UWP and should not be used.'
最佳答案
Microsoft AppCenter 目前不支持 UWP 与 Xamarin 上的相同 API 功能集,因此 TrackError 不可用(3 月 + 时间范围)((正如 Guillaume Perrot 回答所述并链接的 GitHub 问题突出显示)。
Important
UWP only supports starting Crashes with AppCenter.Start and none of the other API calls provided by the Crashes class are supported on UWP, They only work for Xamarin.iOS, Xamarin.Android and Xamarin.Forms apps deployed to iOS and Android.
HandledException
) 并使用 TrackEvent 名称/事件属性来跟踪您处理的异常(它仅支持每个名称/事件 125 个字符,但总比没有好) .
关于xamarin - Microsoft.AppCenter.Crashes.TrackError 已过时且在 UWP for Xamarin Forms 上不可用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54682217/
我有这个代码: private async void ChangeTheColours(Object sender, EventArgs e) { try
我在调用 TrackError 之前注册了事件处理程序,但它们从未被调用过。是的,事件发生是因为 AppCenter 中出现了错误。 //On loading app Crashes.SentErro
我试图向我们的应用程序添加一些分析和崩溃日志记录,因此我正在实现应用程序中心,因为它看起来非常合适。我们正在运行针对 iOS/Android/UWP 的 xamarin 表单。 我正在尝试在我们的共享
我是一名优秀的程序员,十分优秀!