Dropbox .NET SDK
Show / Hide Table of Contents

Class EchoError

EchoError contains the error returned from the Dropbox servers.

Inheritance
object
EchoError
EchoError.Other
EchoError.UserRequested
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Check
Assembly: Dropbox.Api.dll
Syntax
public class EchoError

Constructors

View Source

EchoError()

Initializes a new instance of the EchoError class.

Declaration
public EchoError()

Properties

View Source

AsOther

Gets this instance as a Other, or null.

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

AsUserRequested

Gets this instance as a UserRequested, or null.

Declaration
public EchoError.UserRequested AsUserRequested { get; }
Property Value
Type Description
EchoError.UserRequested
View Source

IsOther

Gets a value indicating whether this instance is Other

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

IsUserRequested

Gets a value indicating whether this instance is UserRequested

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