对我来说,记录与连接API有关的未处理异常的最佳方法是什么?
我在Controller中有一个HttpResponseMessage,应该从API返回数据,并且在运行主应用程序而不运行API(本地)时收到System.AggregateException。
我需要使用log4net捕获并记录此异常。
我的HttpResposnseMessage看起来像这样:
HttpResponseMessage response = client.GetAsync(@"/api/agents/" + id).Result;
,这是在没有API的情况下运行应用程序时发生异常的地方。
任何建议都会有所帮助。谢谢。