Dropbox .NET SDK
Show / Hide Table of Contents

Class UploadSessionStartBatchResult

The upload session start batch result object

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

Constructors

View Source

UploadSessionStartBatchResult(IEnumerable<string>)

Initializes a new instance of the UploadSessionStartBatchResult class.

Declaration
public UploadSessionStartBatchResult(IEnumerable<string> sessionIds)
Parameters
Type Name Description
IEnumerable<string> sessionIds

A List of unique identifiers for the upload session. Pass each session_id to UploadSessionAppendV2Async(UploadSessionAppendArg, Stream) and UploadSessionFinishAsync(UploadSessionFinishArg, Stream).

Properties

View Source

SessionIds

A List of unique identifiers for the upload session. Pass each session_id to UploadSessionAppendV2Async(UploadSessionAppendArg, Stream) and UploadSessionFinishAsync(UploadSessionFinishArg, Stream).

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