Show / Hide Table of Contents

Class UploadSessionCursor

The upload session cursor object

Inheritance
System.Object
UploadSessionCursor
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Dropbox.Api.Files
Assembly: Dropbox.Api.dll
Syntax
public class UploadSessionCursor

Constructors

| Improve this Doc View Source

UploadSessionCursor(String, UInt64)

Initializes a new instance of the UploadSessionCursor class.

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

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

System.UInt64 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

| Improve this Doc 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
System.UInt64
| Improve this Doc View Source

SessionId

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

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

See Also

UploadSessionAppendArg
UploadSessionFinishArg
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • UploadSessionCursor(String, UInt64)
  • Properties
    • Offset
    • SessionId
  • See Also
Back to top Generated by DocFX