0

如果我有“超时已过期”异常,有什么好的方法可以从中恢复并通过再次尝试调用相同的路由来继续做你正在做的事情?

谢谢

4

1 回答 1

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...
    }
}
于 2013-11-14T14:46:10.547 回答