This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see Cake.Curl.
Summary
Gets or sets the amount of time curl should wait before retrying a failed operation.
Setting this property to zero means using curl's own exponential wait algorithm. This is the default value.
- Assembly
- Cake
.Curl .dll - Namespace
- Cake
.Curl - Containing Type
- CurlSettings
Syntax
public uint RetryDelaySeconds { get; set; }
Remarks
According to the documentation, curl's default wait
algorithm is to wait one second after the first failure and then double the previous waiting time
for all subsequent retries until it reaches ten minutes; after that, ten minutes is going to be
used for all retries until the operation either succeeds, is cancelled by the user or the
RetryMaxTimeSeconds
is reached.
Value
Type | Description |
---|---|
uint |