Class MembersListV2Result
The members list v2 result object
Inherited Members
Namespace: Dropbox.Api.Team
Assembly: Dropbox.Api.dll
Syntax
public class MembersListV2Result
Constructors
View SourceMembersListV2Result(IEnumerable<TeamMemberInfoV2>, string, bool)
Initializes a new instance of the MembersListV2Result class.
Declaration
public MembersListV2Result(IEnumerable<TeamMemberInfoV2> members, string cursor, bool hasMore)
Parameters
| Type | Name | Description |
|---|---|---|
| IEnumerable<TeamMemberInfoV2> | members | List of team members. |
| string | cursor | Pass the cursor into MembersListContinueV2Async(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 MembersListContinueV2Async(MembersListContinueArg) can retrieve them. |
Properties
View SourceCursor
Pass the cursor into MembersListContinueV2Async(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 MembersListContinueV2Async(MembersListContinueArg) can retrieve them.
Declaration
public bool HasMore { get; protected set; }
Property Value
| Type | Description |
|---|---|
| bool |
Members
List of team members.
Declaration
public IList<TeamMemberInfoV2> Members { get; protected set; }
Property Value
| Type | Description |
|---|---|
| IList<TeamMemberInfoV2> |