Dropbox .NET SDK
Show / Hide Table of Contents

Class AccessError

Error occurred because the account doesn't have permission to access the resource.

Inheritance
object
AccessError
AccessError.InvalidAccountType
AccessError.NoPermission
AccessError.Other
AccessError.PaperAccessDenied
AccessError.TeamAccessDenied
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 AccessError

Constructors

View Source

AccessError()

Initializes a new instance of the AccessError class.

Declaration
public AccessError()

Properties

View Source

AsInvalidAccountType

Gets this instance as a InvalidAccountType, or null.

Declaration
public AccessError.InvalidAccountType AsInvalidAccountType { get; }
Property Value
Type Description
AccessError.InvalidAccountType
View Source

AsNoPermission

Gets this instance as a NoPermission, or null.

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

AsOther

Gets this instance as a Other, or null.

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

AsPaperAccessDenied

Gets this instance as a PaperAccessDenied, or null.

Declaration
public AccessError.PaperAccessDenied AsPaperAccessDenied { get; }
Property Value
Type Description
AccessError.PaperAccessDenied
View Source

AsTeamAccessDenied

Gets this instance as a TeamAccessDenied, or null.

Declaration
public AccessError.TeamAccessDenied AsTeamAccessDenied { get; }
Property Value
Type Description
AccessError.TeamAccessDenied
View Source

IsInvalidAccountType

Gets a value indicating whether this instance is InvalidAccountType

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

IsPaperAccessDenied

Gets a value indicating whether this instance is PaperAccessDenied

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

IsTeamAccessDenied

Gets a value indicating whether this instance is TeamAccessDenied

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