Dropbox .NET SDK
Show / Hide Table of Contents

Class SaveUrlError

The save url error object

Inheritance
object
SaveUrlError
SaveUrlError.DownloadFailed
SaveUrlError.InvalidUrl
SaveUrlError.NotFound
SaveUrlError.Other
SaveUrlError.Path
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 SaveUrlError

Constructors

View Source

SaveUrlError()

Initializes a new instance of the SaveUrlError class.

Declaration
public SaveUrlError()

Properties

View Source

AsDownloadFailed

Gets this instance as a DownloadFailed, or null.

Declaration
public SaveUrlError.DownloadFailed AsDownloadFailed { get; }
Property Value
Type Description
SaveUrlError.DownloadFailed
View Source

AsInvalidUrl

Gets this instance as a InvalidUrl, or null.

Declaration
public SaveUrlError.InvalidUrl AsInvalidUrl { get; }
Property Value
Type Description
SaveUrlError.InvalidUrl
View Source

AsNotFound

Gets this instance as a NotFound, or null.

Declaration
public SaveUrlError.NotFound AsNotFound { get; }
Property Value
Type Description
SaveUrlError.NotFound
View Source

AsOther

Gets this instance as a Other, or null.

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

AsPath

Gets this instance as a Path, or null.

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

IsDownloadFailed

Gets a value indicating whether this instance is DownloadFailed

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

IsInvalidUrl

Gets a value indicating whether this instance is InvalidUrl

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

IsNotFound

Gets a value indicating whether this instance is NotFound

Declaration
public bool IsNotFound { get; }
Property Value
Type Description
bool
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
In this article
Back to top Dropbox .NET SDK