Dropbox .NET SDK
Show / Hide Table of Contents

Class GroupInfo

The information about a group. Groups is a way to manage a list of users who need same access permission to the shared folder.

Inheritance
object
GroupSummary
GroupInfo
Inherited Members
GroupSummary.GroupName
GroupSummary.GroupId
GroupSummary.GroupManagementType
GroupSummary.GroupExternalId
GroupSummary.MemberCount
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 GroupInfo : GroupSummary

Constructors

View Source

GroupInfo(string, string, GroupManagementType, GroupType, bool, bool, bool, string, uint?)

Initializes a new instance of the GroupInfo class.

Declaration
public GroupInfo(string groupName, string groupId, GroupManagementType groupManagementType, GroupType groupType, bool isMember, bool isOwner, bool sameTeam, string groupExternalId = null, uint? memberCount = null)
Parameters
Type Name Description
string groupName

The group name

string groupId

The group id

GroupManagementType groupManagementType

Who is allowed to manage the group.

GroupType groupType

Field is deprecated. The type of group.

bool isMember

If the current user is a member of the group.

bool isOwner

If the current user is an owner of the group.

bool sameTeam

If the group is owned by the current user's team.

string groupExternalId

External ID of group. This is an arbitrary ID that an admin can attach to a group.

uint? memberCount

The number of members in the group.

Properties

View Source

GroupType

Field is deprecated. The type of group.

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

IsMember

If the current user is a member of the group.

Declaration
public bool IsMember { get; protected set; }
Property Value
Type Description
bool
View Source

IsOwner

If the current user is an owner of the group.

Declaration
public bool IsOwner { get; protected set; }
Property Value
Type Description
bool
View Source

SameTeam

If the group is owned by the current user's team.

Declaration
public bool SameTeam { get; protected set; }
Property Value
Type Description
bool

See Also

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