Class UserInfo
Basic information about a user. Use GetAccountAsync(GetAccountArg) and GetAccountBatchAsync(GetAccountBatchArg) to obtain more detailed information.
Inheritance
System.Object
UserInfo
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Dropbox.Api.Sharing
Assembly: Dropbox.Api.dll
Syntax
public class UserInfo
Constructors
| Improve this Doc View SourceUserInfo(String, String, String, Boolean, String)
Initializes a new instance of the UserInfo class.
Declaration
public UserInfo(string accountId, string email, string displayName, bool sameTeam, string teamMemberId = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | accountId | The account ID of the user. |
System.String | Email address of user. |
|
System.String | displayName | The display name of the user. |
System.Boolean | sameTeam | If the user is in the same team as current user. |
System.String | teamMemberId | The team member ID of the shared folder member. Only
present if |
Properties
| Improve this Doc View SourceAccountId
The account ID of the user.
Declaration
public string AccountId { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
DisplayName
The display name of the user.
Declaration
public string DisplayName { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
Email address of user.
Declaration
public string Email { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
SameTeam
If the user is in the same team as current user.
Declaration
public bool SameTeam { get; protected set; }
Property Value
Type | Description |
---|---|
System.Boolean |
TeamMemberId
The team member ID of the shared folder member. Only present if SameTeam is true.
Declaration
public string TeamMemberId { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |