Dropbox .NET SDK
Show / Hide Table of Contents

Class GroupsMembersListResult

The groups members list result object

Inheritance
object
GroupsMembersListResult
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 GroupsMembersListResult

Constructors

View Source

GroupsMembersListResult(IEnumerable<GroupMemberInfo>, string, bool)

Initializes a new instance of the GroupsMembersListResult class.

Declaration
public GroupsMembersListResult(IEnumerable<GroupMemberInfo> members, string cursor, bool hasMore)
Parameters
Type Name Description
IEnumerable<GroupMemberInfo> members

The members

string cursor

Pass the cursor into GroupsMembersListContinueAsync(GroupsMembersListContinueArg) to obtain additional group members.

bool hasMore

Is true if there are additional group members that have not been returned yet. An additional call to GroupsMembersListContinueAsync(GroupsMembersListContinueArg) can retrieve them.

Properties

View Source

Cursor

Pass the cursor into GroupsMembersListContinueAsync(GroupsMembersListContinueArg) to obtain additional group members.

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

HasMore

Is true if there are additional group members that have not been returned yet. An additional call to GroupsMembersListContinueAsync(GroupsMembersListContinueArg) can retrieve them.

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

Members

Gets the members of the groups members list result

Declaration
public IList<GroupMemberInfo> Members { get; protected set; }
Property Value
Type Description
IList<GroupMemberInfo>
  • View Source
In this article
Back to top Dropbox .NET SDK