Dropbox .NET SDK
Show / Hide Table of Contents

Class UploadWriteFailed

The upload write failed object

Inheritance
object
UploadWriteFailed
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 UploadWriteFailed

Constructors

View Source

UploadWriteFailed(WriteError, string)

Initializes a new instance of the UploadWriteFailed class.

Declaration
public UploadWriteFailed(WriteError reason, string uploadSessionId)
Parameters
Type Name Description
WriteError reason

The reason why the file couldn't be saved.

string uploadSessionId

The upload session ID; data has already been uploaded to the corresponding upload session and this ID may be used to retry the commit with UploadSessionFinishAsync(UploadSessionFinishArg, Stream).

Properties

View Source

Reason

The reason why the file couldn't be saved.

Declaration
public WriteError Reason { get; protected set; }
Property Value
Type Description
WriteError
View Source

UploadSessionId

The upload session ID; data has already been uploaded to the corresponding upload session and this ID may be used to retry the commit with UploadSessionFinishAsync(UploadSessionFinishArg, Stream).

Declaration
public string UploadSessionId { get; protected set; }
Property Value
Type Description
string
  • View Source
In this article
Back to top Dropbox .NET SDK