超时的C#恢复技术

时间:2013-11-14 14:39:41

标签: c# sql exception command recovery

如果我有一个“Timeout Expired”异常,那么通过再次尝试调用相同的路由可以从中恢复并继续做你正在做的事情的好方法是什么?

谢谢

1 个答案:

答案 0 :(得分:0)

while (true)
{
    try
    {
        /////put your code here
        break; // Exit the loop. Could return from the method, depending
               // on what it does...
    }
    catch
    {
        // Log, I suspect...
    }
}