Class RetryResponse
Class that has retry information.
Inherited Members
Namespace: MercadoPago .Http
Assembly: MercadoPago.dll
Syntax
public class RetryResponse
Constructors
| Edit this page View SourceRetryResponse()
Initializes a new instance of the Retry
Declaration
public RetryResponse()
RetryResponse(bool, TimeSpan)
Initializes a new instance of the Retry
Declaration
public RetryResponse(bool retry, TimeSpan delay)
Parameters
Type | Name | Description |
---|---|---|
bool | retry | Should retry ( |
Time |
delay | Time to delay in ms before the next attempt. |
Properties
| Edit this page View SourceDelay
Time to delay in ms.
Declaration
public TimeSpan Delay { get; set; }
Property Value
Type | Description |
---|---|
Time |
Retry
Should retry (true
) or not (false
).
Declaration
public bool Retry { get; set; }
Property Value
Type | Description |
---|---|
bool |