Dropbox .NET SDK
Show / Hide Table of Contents

Class DeleteError

The delete error object

Inheritance
object
DeleteError
DeleteError.Other
DeleteError.PathLookup
DeleteError.PathWrite
DeleteError.TooManyFiles
DeleteError.TooManyWriteOperations
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 DeleteError

Constructors

View Source

DeleteError()

Initializes a new instance of the DeleteError class.

Declaration
public DeleteError()

Properties

View Source

AsOther

Gets this instance as a Other, or null.

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

AsPathLookup

Gets this instance as a PathLookup, or null.

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

AsPathWrite

Gets this instance as a PathWrite, or null.

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

AsTooManyFiles

Gets this instance as a TooManyFiles, or null.

Declaration
public DeleteError.TooManyFiles AsTooManyFiles { get; }
Property Value
Type Description
DeleteError.TooManyFiles
View Source

AsTooManyWriteOperations

Gets this instance as a TooManyWriteOperations, or null.

Declaration
public DeleteError.TooManyWriteOperations AsTooManyWriteOperations { get; }
Property Value
Type Description
DeleteError.TooManyWriteOperations
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

IsTooManyFiles

Gets a value indicating whether this instance is TooManyFiles

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

IsTooManyWriteOperations

Gets a value indicating whether this instance is TooManyWriteOperations

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