Class RateLimitError
Error occurred because the app is being rate limited.
Inherited Members
Namespace: Dropbox.Api.Auth
Assembly: Dropbox.Api.dll
Syntax
public class RateLimitError
Constructors
View SourceRateLimitError(RateLimitReason, ulong)
Initializes a new instance of the RateLimitError class.
Declaration
public RateLimitError(RateLimitReason reason, ulong retryAfter = 1)
Parameters
| Type | Name | Description |
|---|---|---|
| RateLimitReason | reason | The reason why the app is being rate limited. |
| ulong | retryAfter | The number of seconds that the app should wait before making another request. |
Properties
View SourceReason
The reason why the app is being rate limited.
Declaration
public RateLimitReason Reason { get; protected set; }
Property Value
| Type | Description |
|---|---|
| RateLimitReason |
RetryAfter
The number of seconds that the app should wait before making another request.
Declaration
public ulong RetryAfter { get; protected set; }
Property Value
| Type | Description |
|---|---|
| ulong |