Dropbox .NET SDK
Show / Hide Table of Contents

Class UploadSessionStartResult

The upload session start result object

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

Constructors

View Source

UploadSessionStartResult(string)

Initializes a new instance of the UploadSessionStartResult class.

Declaration
public UploadSessionStartResult(string sessionId)
Parameters
Type Name Description
string sessionId

A unique identifier for the upload session. Pass this to UploadSessionAppendV2Async(UploadSessionAppendArg, Stream) and UploadSessionFinishAsync(UploadSessionFinishArg, Stream).

Properties

View Source

SessionId

A unique identifier for the upload session. Pass this to UploadSessionAppendV2Async(UploadSessionAppendArg, Stream) and UploadSessionFinishAsync(UploadSessionFinishArg, Stream).

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