Dropbox .NET SDK
Show / Hide Table of Contents

Class UploadSessionStartBatchArg

The upload session start batch arg object

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

Constructors

View Source

UploadSessionStartBatchArg(ulong, UploadSessionType)

Initializes a new instance of the UploadSessionStartBatchArg class.

Declaration
public UploadSessionStartBatchArg(ulong numSessions, UploadSessionType sessionType = null)
Parameters
Type Name Description
ulong numSessions

The number of upload sessions to start.

UploadSessionType sessionType

Type of upload session you want to start. If not specified, default is UploadSessionType.Sequential.

Properties

View Source

NumSessions

The number of upload sessions to start.

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

SessionType

Type of upload session you want to start. If not specified, default is UploadSessionType.Sequential.

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