Dropbox .NET SDK
Show / Hide Table of Contents

Class TeamMemberInfoV2

Information about a team member.

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

Constructors

View Source

TeamMemberInfoV2(TeamMemberProfile, IEnumerable<TeamMemberRole>)

Initializes a new instance of the TeamMemberInfoV2 class.

Declaration
public TeamMemberInfoV2(TeamMemberProfile profile, IEnumerable<TeamMemberRole> roles = null)
Parameters
Type Name Description
TeamMemberProfile profile

Profile of a user as a member of a team.

IEnumerable<TeamMemberRole> roles

The user's roles in the team.

Properties

View Source

Profile

Profile of a user as a member of a team.

Declaration
public TeamMemberProfile Profile { get; protected set; }
Property Value
Type Description
TeamMemberProfile
View Source

Roles

The user's roles in the team.

Declaration
public IList<TeamMemberRole> Roles { get; protected set; }
Property Value
Type Description
IList<TeamMemberRole>

See Also

TeamMemberInfoV2Result
  • View Source
In this article
Back to top Dropbox .NET SDK