Show / Hide Table of Contents

Class GroupsMembersListResult

The groups members list result object

Inheritance
System.Object
GroupsMembersListResult
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.Team
Assembly: Dropbox.Api.dll
Syntax
public class GroupsMembersListResult

Constructors

| Improve this Doc View Source

GroupsMembersListResult(IEnumerable<GroupMemberInfo>, String, Boolean)

Initializes a new instance of the GroupsMembersListResult class.

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

The members

System.String cursor

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

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

| Improve this Doc 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
System.String
| Improve this Doc 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
System.Boolean
| Improve this Doc View Source

Members

Gets the members of the groups members list result

Declaration
public IList<GroupMemberInfo> Members { get; protected set; }
Property Value
Type Description
System.Collections.Generic.IList<GroupMemberInfo>
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • GroupsMembersListResult(IEnumerable<GroupMemberInfo>, String, Boolean)
  • Properties
    • Cursor
    • HasMore
    • Members
Back to top Generated by DocFX