📌  相关文章
📜  时间:2019-05-10 标签:c#retry delay request - 不管是什么代码示例

📅  最后修改于: 2022-03-11 14:55:19.132000             🧑  作者: Mango

代码示例1
RetryPolicy retryIfException = 
    Policy.Handle().Retry(3); 
 
retryIfException.Execute(someBusinessLogic.DoSomethingThatMightThrowException);