Dropbox .NET SDK
Show / Hide Table of Contents

Class UserInfoResult

The user info result object

Inheritance
object
UserInfoResult
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 UserInfoResult

Constructors

View Source

UserInfoResult(string, string, string, bool?, string, string)

Initializes a new instance of the UserInfoResult class.

Declaration
public UserInfoResult(string familyName = null, string givenName = null, string email = null, bool? emailVerified = null, string iss = "", string sub = "")
Parameters
Type Name Description
string familyName

Last name of user.

string givenName

First name of user.

string email

Email address of user.

bool? emailVerified

If user is email verified.

string iss

Issuer of token (in this case Dropbox).

string sub

An identifier for the user. This is the Dropbox account_id, a string value such as dbid:AAH4f99T0taONIb-OurWxbNQ6ywGRopQngc.

Properties

View Source

Email

Email address of user.

Declaration
public string Email { get; protected set; }
Property Value
Type Description
string
View Source

EmailVerified

If user is email verified.

Declaration
public bool? EmailVerified { get; protected set; }
Property Value
Type Description
bool?
View Source

FamilyName

Last name of user.

Declaration
public string FamilyName { get; protected set; }
Property Value
Type Description
string
View Source

GivenName

First name of user.

Declaration
public string GivenName { get; protected set; }
Property Value
Type Description
string
View Source

Iss

Issuer of token (in this case Dropbox).

Declaration
public string Iss { get; protected set; }
Property Value
Type Description
string
View Source

Sub

An identifier for the user. This is the Dropbox account_id, a string value such as dbid:AAH4f99T0taONIb-OurWxbNQ6ywGRopQngc.

Declaration
public string Sub { get; protected set; }
Property Value
Type Description
string
  • View Source
In this article
Back to top Dropbox .NET SDK