Dropbox .NET SDK
Show / Hide Table of Contents

Class RateLimitError

Error occurred because the app is being rate limited.

Inheritance
object
RateLimitError
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Auth
Assembly: Dropbox.Api.dll
Syntax
public class RateLimitError

Constructors

View Source

RateLimitError(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 Source

Reason

The reason why the app is being rate limited.

Declaration
public RateLimitReason Reason { get; protected set; }
Property Value
Type Description
RateLimitReason
View Source

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
  • View Source
In this article
Back to top Dropbox .NET SDK