Class RetryBehavior
This class indicates whether an operation should be retried.
public class RetryBehavior
- Inheritance
-
RetryBehavior
- Inherited Members
Properties
ShouldFailTest
Indicates whether retries have been exhausted and the test should now be marked as failed.
public bool ShouldFailTest { get; set; }
Property Value
ShouldRetry
Indicates whether the operation should be retried.
public bool ShouldRetry { get; set; }
Property Value
WaitTimeInMilliseconds
The amount of time to wait before retrying the operation.
public int WaitTimeInMilliseconds { get; set; }