Dropbox .NET SDK
Show / Hide Table of Contents

Class TeamMemberInfo

Information about a team member.

Inheritance
object
TeamMemberInfo
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Sharing
Assembly: Dropbox.Api.dll
Syntax
public class TeamMemberInfo

Constructors

View Source

TeamMemberInfo(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.

string displayName

The display name of the user.

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

View Source

DisplayName

The display name of the user.

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

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
string
View Source

TeamInfo

Information about the member's team.

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