The client disconnected

后端 未结 2 1560
既然无缘
既然无缘 2021-01-18 06:23

I\'m getting the following error in logs for WebAPI

System.Web.HttpException (0x800703E3): The client disconnected. at System.Web.Hosting.IIS7Wor

2条回答
  •  独厮守ぢ
    2021-01-18 07:05

    try
    {
       // Open Connection
       // Do stuff
    }
    catch (HttpException  ex)
    {
       // Log it?
       // Ignore it? 
       // Do what you want with it?
    }
    finally
    {
       // Close connection
    }
    

提交回复
热议问题