Dropbox .NET SDK
Show / Hide Table of Contents

Class UploadSessionAppendBatchArg

The upload session append batch arg object

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

Constructors

View Source

UploadSessionAppendBatchArg(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 Source

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.

Declaration
public string ContentHash { get; protected set; }
Property Value
Type Description
string
View Source

Entries

Append information for each file in the batch.

Declaration
public IList<UploadSessionAppendBatchArgEntry> Entries { get; protected set; }
Property Value
Type Description
IList<UploadSessionAppendBatchArgEntry>
  • View Source
In this article
Back to top Dropbox .NET SDK