Dropbox .NET SDK
Show / Hide Table of Contents

Class PendingUploadMode

Flag to indicate pending upload default (for linking to not-yet-existing paths).

Inheritance
object
PendingUploadMode
PendingUploadMode.File
PendingUploadMode.Folder
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Sharing
Assembly: Dropbox.Api.dll
Syntax
public class PendingUploadMode

Constructors

View Source

PendingUploadMode()

Initializes a new instance of the PendingUploadMode class.

Declaration
public PendingUploadMode()

Properties

View Source

AsFile

Gets this instance as a File, or null.

Declaration
public PendingUploadMode.File AsFile { get; }
Property Value
Type Description
PendingUploadMode.File
View Source

AsFolder

Gets this instance as a Folder, or null.

Declaration
public PendingUploadMode.Folder AsFolder { get; }
Property Value
Type Description
PendingUploadMode.Folder
View Source

IsFile

Gets a value indicating whether this instance is File

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

IsFolder

Gets a value indicating whether this instance is Folder

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