Dropbox .NET SDK
Show / Hide Table of Contents

Class PaperFolderCreateError

The paper folder create error object

Inheritance
object
PaperFolderCreateError
PaperFolderCreateError.FolderNotFound
PaperFolderCreateError.InsufficientPermissions
PaperFolderCreateError.InvalidFolderId
PaperFolderCreateError.Other
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Paper
Assembly: Dropbox.Api.dll
Syntax
public class PaperFolderCreateError

Constructors

View Source

PaperFolderCreateError()

Initializes a new instance of the PaperFolderCreateError class.

Declaration
public PaperFolderCreateError()

Properties

View Source

AsFolderNotFound

Gets this instance as a FolderNotFound, or null.

Declaration
public PaperFolderCreateError.FolderNotFound AsFolderNotFound { get; }
Property Value
Type Description
PaperFolderCreateError.FolderNotFound
View Source

AsInsufficientPermissions

Gets this instance as a InsufficientPermissions, or null.

Declaration
public PaperFolderCreateError.InsufficientPermissions AsInsufficientPermissions { get; }
Property Value
Type Description
PaperFolderCreateError.InsufficientPermissions
View Source

AsInvalidFolderId

Gets this instance as a InvalidFolderId, or null.

Declaration
public PaperFolderCreateError.InvalidFolderId AsInvalidFolderId { get; }
Property Value
Type Description
PaperFolderCreateError.InvalidFolderId
View Source

AsOther

Gets this instance as a Other, or null.

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

IsFolderNotFound

Gets a value indicating whether this instance is FolderNotFound

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

IsInsufficientPermissions

Gets a value indicating whether this instance is InsufficientPermissions

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

IsInvalidFolderId

Gets a value indicating whether this instance is InvalidFolderId

Declaration
public bool IsInvalidFolderId { 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
In this article
Back to top Dropbox .NET SDK