这在经典.NET上运行良好:
string json = JsonConvert.SerializeObject(new Exception("Test"));
但它在WinRT(RP)上失败了:
Error getting value from 'TargetSite' on 'System.Exception'.
The API 'System.Exception.get_TargetSite()' cannot be used on the current platform. See http://go.microsoft.com/fwlink/?LinkId=248273 for more information.
编辑: 我还需要通过线路传输Exception并在后端进行反序列化。
任何人有任何解决方法吗?