Dropbox .NET SDK
Show / Hide Table of Contents

Class RetryException

An HTTP Exception that will cause a retry due to transient failure. The SDK will perform a certain number of retries which is configurable in DropboxClient. If the client still gets this exception, it's up to the client to decide whether to continue retrying or not.

Inheritance
object
Exception
DropboxException
HttpException
RetryException
Implements
ISerializable
Inherited Members
HttpException.StatusCode
HttpException.RequestUri
DropboxException.ToString()
DropboxException.RequestId
Exception.GetBaseException()
Exception.GetObjectData(SerializationInfo, StreamingContext)
Exception.GetType()
Exception.Data
Exception.HelpLink
Exception.HResult
Exception.InnerException
Exception.Message
Exception.Source
Exception.StackTrace
Exception.TargetSite
Exception.SerializeObjectState
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
Namespace: Dropbox.Api
Assembly: Dropbox.Api.dll
Syntax
public class RetryException : HttpException, ISerializable

Properties

View Source

IsRateLimit

Gets a value indicating whether this error represents a rate limiting response from the server.

Declaration
[Obsolete("This field will be removed soon. Please catch RateLimitException separately.")]
public virtual bool IsRateLimit { get; }
Property Value
Type Description
bool

true if this response is a rate limit; otherwise, false.

Implements

ISerializable
  • View Source
In this article
Back to top Dropbox .NET SDK