Dropbox .NET SDK
Show / Hide Table of Contents

Class UploadSessionFinishArg

The upload session finish arg object

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

Constructors

View Source

UploadSessionFinishArg(UploadSessionCursor, CommitInfo, string)

Initializes a new instance of the UploadSessionFinishArg class.

Declaration
public UploadSessionFinishArg(UploadSessionCursor cursor, CommitInfo commit, string contentHash = null)
Parameters
Type Name Description
UploadSessionCursor cursor

Contains the upload session ID and the offset.

CommitInfo commit

Contains the path and other optional modifiers for the commit.

string contentHash

A hash of the file content 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

Commit

Contains the path and other optional modifiers for the commit.

Declaration
public CommitInfo Commit { get; protected set; }
Property Value
Type Description
CommitInfo
View Source

ContentHash

A hash of the file content 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

Cursor

Contains the upload session ID and the offset.

Declaration
public UploadSessionCursor Cursor { get; protected set; }
Property Value
Type Description
UploadSessionCursor
  • View Source
In this article
Back to top Dropbox .NET SDK