Show / Hide Table of Contents

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

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 Source

DisplayName

The display name of the user.

Declaration
public string DisplayName { get; protected set; }
Property Value
Type Description
System.String
| Improve this Doc 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
System.String
| Improve this Doc View Source

TeamInfo

Information about the member's team.

Declaration
public Team TeamInfo { get; protected set; }
Property Value
Type Description
Team
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • TeamMemberInfo(Team, String, String)
  • Properties
    • DisplayName
    • MemberId
    • TeamInfo
Back to top Generated by DocFX