コード例 #1
0
 public static void Retry(Action action, int maxAttempts)
 {
     RetryUtil.Retry(action, maxAttempts);
 }
コード例 #2
0
 public static TResult Retry <TResult>(Func <TResult> func, int maxAttempts)
 {
     return(RetryUtil.Retry(func, maxAttempts));
 }