Dropbox .NET SDK
Show / Hide Table of Contents

Class UploadSessionAppendBatchError

The upload session append batch error object

Inheritance
object
UploadSessionAppendBatchError
UploadSessionAppendBatchError.ContentHashMismatch
UploadSessionAppendBatchError.LengthMismatch
UploadSessionAppendBatchError.Other
UploadSessionAppendBatchError.PayloadTooLarge
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 UploadSessionAppendBatchError

Constructors

View Source

UploadSessionAppendBatchError()

Initializes a new instance of the UploadSessionAppendBatchError class.

Declaration
public UploadSessionAppendBatchError()

Properties

View Source

AsContentHashMismatch

Gets this instance as a ContentHashMismatch, or null.

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

AsLengthMismatch

Gets this instance as a LengthMismatch, or null.

Declaration
public UploadSessionAppendBatchError.LengthMismatch AsLengthMismatch { get; }
Property Value
Type Description
UploadSessionAppendBatchError.LengthMismatch
View Source

AsOther

Gets this instance as a Other, or null.

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

AsPayloadTooLarge

Gets this instance as a PayloadTooLarge, or null.

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

IsContentHashMismatch

Gets a value indicating whether this instance is ContentHashMismatch

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

IsLengthMismatch

Gets a value indicating whether this instance is LengthMismatch

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

IsPayloadTooLarge

Gets a value indicating whether this instance is PayloadTooLarge

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