c# retry delay request

63

c# retry delay request -

RetryPolicy retryIfException = 
	Policy.Handle<Exception>().Retry(3); 
 
retryIfException.Execute(someBusinessLogic.DoSomethingThatMightThrowException);

Comments

Submit
0 Comments