如何处理WebListener ThrowWriteException?

时间:2018-12-06 15:11:31

标签: asp.net-web-api

我有一个使用WebListenerCommunicationListener的ASP.NET WebApi应用程序。创建此侦听器时,我们有兴趣抛出写入异常,以便以后可以处理它们。问题是我不知道在哪里实际处理ThrowWriteException。任何在哪里处理这些异常的指导都将受到赞赏。

以下是该实例的快速摘要:

new WebHostBuilder()
  .UseWebListener(x => x.ListenerSettings.ThrowWriteExceptions = true)
  .ConfigureServices(s => s.AddSingleton(serviceContext))
  .UseContentRoot(Directory.GetCurrentDirectory())
  .UseStartup<Startup>()
  .UseUrls(url)
  .Build();

谢谢。

0 个答案:

没有答案