Show / Hide Table of Contents

Class UploadWriteFailed

The upload write failed object

Inheritance
System.Object
UploadWriteFailed
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Dropbox.Api.Files
Assembly: Dropbox.Api.dll
Syntax
public class UploadWriteFailed

Constructors

| Improve this Doc 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.

System.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

| Improve this Doc View Source

Reason

The reason why the file couldn't be saved.

Declaration
public WriteError Reason { get; protected set; }
Property Value
Type Description
WriteError
| Improve this Doc 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
System.String
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • UploadWriteFailed(WriteError, String)
  • Properties
    • Reason
    • UploadSessionId
Back to top Generated by DocFX