Class MembersListResult
The members list result object
Inherited Members
Namespace: Dropbox.Api.Team
Assembly: Dropbox.Api.dll
Syntax
public class MembersListResult
Constructors
View SourceMembersListResult(IEnumerable<TeamMemberInfo>, string, bool)
Initializes a new instance of the MembersListResult class.
Declaration
public MembersListResult(IEnumerable<TeamMemberInfo> members, string cursor, bool hasMore)
Parameters
| Type | Name | Description |
|---|---|---|
| IEnumerable<TeamMemberInfo> | members | List of team members. |
| string | cursor | Pass the cursor into MembersListContinueAsync(MembersListContinueArg) to obtain the additional members. |
| bool | hasMore | Is true if there are additional team members that have not been returned yet. An additional call to MembersListContinueAsync(MembersListContinueArg) can retrieve them. |
Properties
View SourceCursor
Pass the cursor into MembersListContinueAsync(MembersListContinueArg) to obtain the additional members.
Declaration
public string Cursor { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
HasMore
Is true if there are additional team members that have not been returned yet. An additional call to MembersListContinueAsync(MembersListContinueArg) can retrieve them.
Declaration
public bool HasMore { get; protected set; }
Property Value
| Type | Description |
|---|---|
| bool |
Members
List of team members.
Declaration
public IList<TeamMemberInfo> Members { get; protected set; }
Property Value
| Type | Description |
|---|---|
| IList<TeamMemberInfo> |