Class UserInfoResult
The user info result object
Inherited Members
Namespace: Dropbox.Api.Openid
Assembly: Dropbox.Api.dll
Syntax
public class UserInfoResult
Constructors
View SourceUserInfoResult(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 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 SourceEmail address of user.
Declaration
public string Email { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
EmailVerified
If user is email verified.
Declaration
public bool? EmailVerified { get; protected set; }
Property Value
| Type | Description |
|---|---|
| bool? |
FamilyName
Last name of user.
Declaration
public string FamilyName { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
GivenName
First name of user.
Declaration
public string GivenName { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
Iss
Issuer of token (in this case Dropbox).
Declaration
public string Iss { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
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 |