Dropbox .NET SDK
Show / Hide Table of Contents

Class UploadSessionCursor

The upload session cursor object

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

Constructors

View Source

UploadSessionCursor(string, ulong)

Initializes a new instance of the UploadSessionCursor class.

Declaration
public UploadSessionCursor(string sessionId, ulong offset)
Parameters
Type Name Description
string sessionId

The upload session ID (returned by UploadSessionStartAsync(UploadSessionStartArg, Stream)).

ulong offset

Offset in bytes at which data should be appended. We use this to make sure upload data isn't lost or duplicated in the event of a network error.

Properties

View Source

Offset

Offset in bytes at which data should be appended. We use this to make sure upload data isn't lost or duplicated in the event of a network error.

Declaration
public ulong Offset { get; protected set; }
Property Value
Type Description
ulong
View Source

SessionId

The upload session ID (returned by UploadSessionStartAsync(UploadSessionStartArg, Stream)).

Declaration
public string SessionId { get; protected set; }
Property Value
Type Description
string

See Also

UploadSessionAppendArg
UploadSessionAppendBatchArgEntry
UploadSessionFinishArg
  • View Source
In this article
Back to top Dropbox .NET SDK