Class UploadWriteFailed
The upload write failed object
Inherited Members
Namespace: Dropbox.Api.Files
Assembly: Dropbox.Api.dll
Syntax
public class UploadWriteFailed
Constructors
View SourceUploadWriteFailed(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 SourceReason
The reason why the file couldn't be saved.
Declaration
public WriteError Reason { get; protected set; }
Property Value
| Type | Description |
|---|---|
| WriteError |
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 |