Class UploadSessionAppendBatchArg
The upload session append batch arg object
Inherited Members
Namespace: Dropbox.Api.Files
Assembly: Dropbox.Api.dll
Syntax
public class UploadSessionAppendBatchArg
Constructors
View SourceUploadSessionAppendBatchArg(IEnumerable<UploadSessionAppendBatchArgEntry>, string)
Initializes a new instance of the UploadSessionAppendBatchArg class.
Declaration
public UploadSessionAppendBatchArg(IEnumerable<UploadSessionAppendBatchArgEntry> entries, string contentHash = null)
Parameters
| Type | Name | Description |
|---|---|---|
| IEnumerable<UploadSessionAppendBatchArgEntry> | entries | Append information for each file in the batch. |
| string | contentHash | A hash of the entire request body which is all the concatenated pieces of file content that were uploaded in this call. If provided and the uploaded content does not match this hash, an error will be returned. For more information see our Content hash page. |
Properties
View SourceContentHash
A hash of the entire request body which is all the concatenated pieces of file content that were uploaded in this call. If provided and the uploaded content does not match this hash, an error will be returned. For more information see our Content hash page.
Declaration
public string ContentHash { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
Entries
Append information for each file in the batch.
Declaration
public IList<UploadSessionAppendBatchArgEntry> Entries { get; protected set; }
Property Value
| Type | Description |
|---|---|
| IList<UploadSessionAppendBatchArgEntry> |