Dropbox .NET SDK
Show / Hide Table of Contents

Class DownloadError

The download error object

Inheritance
object
DownloadError
DownloadError.Other
DownloadError.Path
DownloadError.UnsupportedFile
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Files
Assembly: Dropbox.Api.dll
Syntax
public class DownloadError

Constructors

View Source

DownloadError()

Initializes a new instance of the DownloadError class.

Declaration
public DownloadError()

Properties

View Source

AsOther

Gets this instance as a Other, or null.

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

AsPath

Gets this instance as a Path, or null.

Declaration
public DownloadError.Path AsPath { get; }
Property Value
Type Description
DownloadError.Path
View Source

AsUnsupportedFile

Gets this instance as a UnsupportedFile, or null.

Declaration
public DownloadError.UnsupportedFile AsUnsupportedFile { get; }
Property Value
Type Description
DownloadError.UnsupportedFile
View Source

IsOther

Gets a value indicating whether this instance is Other

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

IsPath

Gets a value indicating whether this instance is Path

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

IsUnsupportedFile

Gets a value indicating whether this instance is UnsupportedFile

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