Dropbox .NET SDK
Show / Hide Table of Contents

Class UploadError

The upload error object

Inheritance
object
UploadError
UploadError.ContentHashMismatch
UploadError.EncryptionNotSupported
UploadError.Other
UploadError.Path
UploadError.PayloadTooLarge
UploadError.PropertiesError
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 UploadError

Constructors

View Source

UploadError()

Initializes a new instance of the UploadError class.

Declaration
public UploadError()

Properties

View Source

AsContentHashMismatch

Gets this instance as a ContentHashMismatch, or null.

Declaration
public UploadError.ContentHashMismatch AsContentHashMismatch { get; }
Property Value
Type Description
UploadError.ContentHashMismatch
View Source

AsEncryptionNotSupported

Gets this instance as a EncryptionNotSupported, or null.

Declaration
public UploadError.EncryptionNotSupported AsEncryptionNotSupported { get; }
Property Value
Type Description
UploadError.EncryptionNotSupported
View Source

AsOther

Gets this instance as a Other, or null.

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

AsPath

Gets this instance as a Path, or null.

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

AsPayloadTooLarge

Gets this instance as a PayloadTooLarge, or null.

Declaration
public UploadError.PayloadTooLarge AsPayloadTooLarge { get; }
Property Value
Type Description
UploadError.PayloadTooLarge
View Source

AsPropertiesError

Gets this instance as a PropertiesError, or null.

Declaration
public UploadError.PropertiesError AsPropertiesError { get; }
Property Value
Type Description
UploadError.PropertiesError
View Source

IsContentHashMismatch

Gets a value indicating whether this instance is ContentHashMismatch

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

IsEncryptionNotSupported

Gets a value indicating whether this instance is EncryptionNotSupported

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

IsPayloadTooLarge

Gets a value indicating whether this instance is PayloadTooLarge

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

IsPropertiesError

Gets a value indicating whether this instance is PropertiesError

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