本文介绍了如何抑制连接超时错误?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

hi

谁能告诉我如何抑制connecton超时错误


问候
NirmalaSaravanan

hi

Can anybody tell me how to supress connecton timeout error


Regards
NirmalaSaravanan

推荐答案


try
{
   //Probable Connection timeout code
   //e.g.: Connect to DB code
   // Do your stuff
}
catch (Exception ex)
{
   // Log it
   // Or eat it!
}


这篇关于如何抑制连接超时错误?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-03 20:44