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 single hash of all the concatenated file contents uploaded in this call. If provided and the uploaded content does not match this hash, an error will be returned. Optional, but recommended to avoid committing data corrupted in transit. For more information see our Content hash page. |
Properties
View SourceContentHash
A single hash of all the concatenated file contents uploaded in this call. If provided and the uploaded content does not match this hash, an error will be returned. Optional, but recommended to avoid committing data corrupted in transit. 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> |