Dropbox .NET SDK
Show / Hide Table of Contents

Class OpenIdError

The open id error object

Inheritance
object
OpenIdError
OpenIdError.IncorrectOpenidScopes
OpenIdError.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.Openid
Assembly: Dropbox.Api.dll
Syntax
public class OpenIdError

Constructors

View Source

OpenIdError()

Initializes a new instance of the OpenIdError class.

Declaration
public OpenIdError()

Properties

View Source

AsIncorrectOpenidScopes

Gets this instance as a IncorrectOpenidScopes, or null.

Declaration
public OpenIdError.IncorrectOpenidScopes AsIncorrectOpenidScopes { get; }
Property Value
Type Description
OpenIdError.IncorrectOpenidScopes
View Source

AsOther

Gets this instance as a Other, or null.

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

IsIncorrectOpenidScopes

Gets a value indicating whether this instance is IncorrectOpenidScopes

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