Class TeamMemberInfo
Information about a team member.
Inheritance
System.Object
TeamMemberInfo
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 TeamMemberInfo
Constructors
| Improve this Doc View SourceTeamMemberInfo(Team, String, String)
Initializes a new instance of the TeamMemberInfo class.
Declaration
public TeamMemberInfo(Team teamInfo, string displayName, string memberId = null)
Parameters
Type | Name | Description |
---|---|---|
Team | teamInfo | Information about the member's team. |
System.String | displayName | The display name of the user. |
System.String | memberId | ID of user as a member of a team. This field will only be present if the member is in the same team as current user. |
Properties
| Improve this Doc View SourceDisplayName
The display name of the user.
Declaration
public string DisplayName { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
MemberId
ID of user as a member of a team. This field will only be present if the member is in the same team as current user.
Declaration
public string MemberId { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
TeamInfo
Information about the member's team.
Declaration
public Team TeamInfo { get; protected set; }
Property Value
Type | Description |
---|---|
Team |