Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# retry delay request

RetryPolicy retryIfException = 
	Policy.Handle<Exception>().Retry(3); 
 
retryIfException.Execute(someBusinessLogic.DoSomethingThatMightThrowException);
Source by www.pluralsight.com #
 
PREVIOUS NEXT
Tagged: #retry #delay #request
ADD COMMENT
Topic
Name
2+5 =