Dropbox .NET SDK
Show / Hide Table of Contents

Class UserInfoError

The user info error object

Inheritance
object
UserInfoError
UserInfoError.OpenidError
UserInfoError.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 UserInfoError

Constructors

View Source

UserInfoError()

Initializes a new instance of the UserInfoError class.

Declaration
public UserInfoError()

Properties

View Source

AsOpenidError

Gets this instance as a OpenidError, or null.

Declaration
public UserInfoError.OpenidError AsOpenidError { get; }
Property Value
Type Description
UserInfoError.OpenidError
View Source

AsOther

Gets this instance as a Other, or null.

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

IsOpenidError

Gets a value indicating whether this instance is OpenidError

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