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 SourceUploadSessionCursor(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 SourceOffset
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 |
SessionId
The upload session ID (returned by UploadSessionStartAsync(UploadSessionStartArg, Stream)).
Declaration
public string SessionId { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |