Dropbox .NET SDK
Show / Hide Table of Contents

Class TokenFromOAuth1Error

The token from o auth1 error object

Inheritance
object
TokenFromOAuth1Error
TokenFromOAuth1Error.AppIdMismatch
TokenFromOAuth1Error.InvalidOauth1TokenInfo
TokenFromOAuth1Error.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.Auth
Assembly: Dropbox.Api.dll
Syntax
public class TokenFromOAuth1Error

Constructors

View Source

TokenFromOAuth1Error()

Initializes a new instance of the TokenFromOAuth1Error class.

Declaration
public TokenFromOAuth1Error()

Properties

View Source

AsAppIdMismatch

Gets this instance as a AppIdMismatch, or null.

Declaration
public TokenFromOAuth1Error.AppIdMismatch AsAppIdMismatch { get; }
Property Value
Type Description
TokenFromOAuth1Error.AppIdMismatch
View Source

AsInvalidOauth1TokenInfo

Gets this instance as a InvalidOauth1TokenInfo, or null.

Declaration
public TokenFromOAuth1Error.InvalidOauth1TokenInfo AsInvalidOauth1TokenInfo { get; }
Property Value
Type Description
TokenFromOAuth1Error.InvalidOauth1TokenInfo
View Source

AsOther

Gets this instance as a Other, or null.

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

IsAppIdMismatch

Gets a value indicating whether this instance is AppIdMismatch

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

IsInvalidOauth1TokenInfo

Gets a value indicating whether this instance is InvalidOauth1TokenInfo

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