Dropbox .NET SDK
Show / Hide Table of Contents

Class RestoreError

The restore error object

Inheritance
object
RestoreError
RestoreError.InProgress
RestoreError.InvalidRevision
RestoreError.Other
RestoreError.PathLookup
RestoreError.PathWrite
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 RestoreError

Constructors

View Source

RestoreError()

Initializes a new instance of the RestoreError class.

Declaration
public RestoreError()

Properties

View Source

AsInProgress

Gets this instance as a InProgress, or null.

Declaration
public RestoreError.InProgress AsInProgress { get; }
Property Value
Type Description
RestoreError.InProgress
View Source

AsInvalidRevision

Gets this instance as a InvalidRevision, or null.

Declaration
public RestoreError.InvalidRevision AsInvalidRevision { get; }
Property Value
Type Description
RestoreError.InvalidRevision
View Source

AsOther

Gets this instance as a Other, or null.

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

AsPathLookup

Gets this instance as a PathLookup, or null.

Declaration
public RestoreError.PathLookup AsPathLookup { get; }
Property Value
Type Description
RestoreError.PathLookup
View Source

AsPathWrite

Gets this instance as a PathWrite, or null.

Declaration
public RestoreError.PathWrite AsPathWrite { get; }
Property Value
Type Description
RestoreError.PathWrite
View Source

IsInProgress

Gets a value indicating whether this instance is InProgress

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

IsInvalidRevision

Gets a value indicating whether this instance is InvalidRevision

Declaration
public bool IsInvalidRevision { 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

IsPathLookup

Gets a value indicating whether this instance is PathLookup

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

IsPathWrite

Gets a value indicating whether this instance is PathWrite

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