Dropbox .NET SDK
Show / Hide Table of Contents

Class PathRootError

The path root error object

Inheritance
object
PathRootError
PathRootError.InvalidRoot
PathRootError.NoPermission
PathRootError.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.Common
Assembly: Dropbox.Api.dll
Syntax
public class PathRootError

Constructors

View Source

PathRootError()

Initializes a new instance of the PathRootError class.

Declaration
public PathRootError()

Properties

View Source

AsInvalidRoot

Gets this instance as a InvalidRoot, or null.

Declaration
public PathRootError.InvalidRoot AsInvalidRoot { get; }
Property Value
Type Description
PathRootError.InvalidRoot
View Source

AsNoPermission

Gets this instance as a NoPermission, or null.

Declaration
public PathRootError.NoPermission AsNoPermission { get; }
Property Value
Type Description
PathRootError.NoPermission
View Source

AsOther

Gets this instance as a Other, or null.

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

IsInvalidRoot

Gets a value indicating whether this instance is InvalidRoot

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

IsNoPermission

Gets a value indicating whether this instance is NoPermission

Declaration
public bool IsNoPermission { 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