Enum HttpRetryStrategies
Specifies retry strategies under certain HTTP responses.
[Flags]
public enum HttpRetryStrategies
Fields
ExitActionMask = Report | Throw- A mask covering the actions on exit.
None = 0- Accepts the response.
Report = 1- Reports the response as an error without throwing an exception.
RetryBeforeExit = 4- Retries the request before exiting.
Throw = 2- Throws an exception.