Dropbox .NET SDK
Show / Hide Table of Contents

Class UploadSessionType

The upload session type object

Inheritance
object
UploadSessionType
UploadSessionType.Concurrent
UploadSessionType.Other
UploadSessionType.Sequential
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 UploadSessionType

Constructors

View Source

UploadSessionType()

Initializes a new instance of the UploadSessionType class.

Declaration
public UploadSessionType()

Properties

View Source

AsConcurrent

Gets this instance as a Concurrent, or null.

Declaration
public UploadSessionType.Concurrent AsConcurrent { get; }
Property Value
Type Description
UploadSessionType.Concurrent
View Source

AsOther

Gets this instance as a Other, or null.

Declaration
public UploadSessionType.Other AsOther { get; }
Property Value
Type Description
UploadSessionType.Other
View Source

AsSequential

Gets this instance as a Sequential, or null.

Declaration
public UploadSessionType.Sequential AsSequential { get; }
Property Value
Type Description
UploadSessionType.Sequential
View Source

IsConcurrent

Gets a value indicating whether this instance is Concurrent

Declaration
public bool IsConcurrent { get; }
Property Value
Type Description
bool
View Source

IsOther

Gets a value indicating whether this instance is Other

Declaration
public bool IsOther { get; }
Property Value
Type Description
bool
View Source

IsSequential

Gets a value indicating whether this instance is Sequential

Declaration
public bool IsSequential { get; }
Property Value
Type Description
bool
  • View Source
In this article
Back to top Dropbox .NET SDK