Dropbox .NET SDK
Show / Hide Table of Contents

Class RateLimitReason

The rate limit reason object

Inheritance
object
RateLimitReason
RateLimitReason.Other
RateLimitReason.TooManyRequests
RateLimitReason.TooManyWriteOperations
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 RateLimitReason

Constructors

View Source

RateLimitReason()

Initializes a new instance of the RateLimitReason class.

Declaration
public RateLimitReason()

Properties

View Source

AsOther

Gets this instance as a Other, or null.

Declaration
public RateLimitReason.Other AsOther { get; }
Property Value
Type Description
RateLimitReason.Other
View Source

AsTooManyRequests

Gets this instance as a TooManyRequests, or null.

Declaration
public RateLimitReason.TooManyRequests AsTooManyRequests { get; }
Property Value
Type Description
RateLimitReason.TooManyRequests
View Source

AsTooManyWriteOperations

Gets this instance as a TooManyWriteOperations, or null.

Declaration
public RateLimitReason.TooManyWriteOperations AsTooManyWriteOperations { get; }
Property Value
Type Description
RateLimitReason.TooManyWriteOperations
View Source

IsOther

Gets a value indicating whether this instance is Other

Declaration
public bool IsOther { get; }
Property Value
Type Description
bool
View Source

IsTooManyRequests

Gets a value indicating whether this instance is TooManyRequests

Declaration
public bool IsTooManyRequests { get; }
Property Value
Type Description
bool
View Source

IsTooManyWriteOperations

Gets a value indicating whether this instance is TooManyWriteOperations

Declaration
public bool IsTooManyWriteOperations { get; }
Property Value
Type Description
bool
  • View Source
In this article
Back to top Dropbox .NET SDK