Dropbox .NET SDK
Show / Hide Table of Contents

Class NoPermissionError

The no permission error object

Inheritance
object
NoPermissionError
NoPermissionError.Other
NoPermissionError.UnauthorizedAccountIdUsage
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Auth
Assembly: Dropbox.Api.dll
Syntax
public class NoPermissionError

Constructors

View Source

NoPermissionError()

Initializes a new instance of the NoPermissionError class.

Declaration
public NoPermissionError()

Properties

View Source

AsOther

Gets this instance as a Other, or null.

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

AsUnauthorizedAccountIdUsage

Gets this instance as a UnauthorizedAccountIdUsage, or null.

Declaration
public NoPermissionError.UnauthorizedAccountIdUsage AsUnauthorizedAccountIdUsage { get; }
Property Value
Type Description
NoPermissionError.UnauthorizedAccountIdUsage
View Source

IsOther

Gets a value indicating whether this instance is Other

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

IsUnauthorizedAccountIdUsage

Gets a value indicating whether this instance is UnauthorizedAccountIdUsage

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