Dropbox .NET SDK
Show / Hide Table of Contents

Class PaperAccessError

The paper access error object

Inheritance
object
PaperAccessError
PaperAccessError.NotPaperUser
PaperAccessError.Other
PaperAccessError.PaperDisabled
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 PaperAccessError

Constructors

View Source

PaperAccessError()

Initializes a new instance of the PaperAccessError class.

Declaration
public PaperAccessError()

Properties

View Source

AsNotPaperUser

Gets this instance as a NotPaperUser, or null.

Declaration
public PaperAccessError.NotPaperUser AsNotPaperUser { get; }
Property Value
Type Description
PaperAccessError.NotPaperUser
View Source

AsOther

Gets this instance as a Other, or null.

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

AsPaperDisabled

Gets this instance as a PaperDisabled, or null.

Declaration
public PaperAccessError.PaperDisabled AsPaperDisabled { get; }
Property Value
Type Description
PaperAccessError.PaperDisabled
View Source

IsNotPaperUser

Gets a value indicating whether this instance is NotPaperUser

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

IsPaperDisabled

Gets a value indicating whether this instance is PaperDisabled

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