Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我有“超时已过期”异常,有什么好的方法可以从中恢复并通过再次尝试调用相同的路由来继续做你正在做的事情?
谢谢
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... } }