Class MembersListV2Result
The members list v2 result object
Inheritance
System.Object
MembersListV2Result
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 MembersListV2Result
Constructors
| Improve this Doc View SourceMembersListV2Result(IEnumerable<TeamMemberInfoV2>, String, Boolean)
Initializes a new instance of the MembersListV2Result class.
Declaration
public MembersListV2Result(IEnumerable<TeamMemberInfoV2> members, string cursor, bool hasMore)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<TeamMemberInfoV2> | members | List of team members. |
System.String | cursor | Pass the cursor into MembersListContinueV2Async(MembersListContinueArg) to obtain the additional members. |
System.Boolean | 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
| Improve this Doc View SourceCursor
Pass the cursor into MembersListContinueV2Async(MembersListContinueArg) to obtain the additional members.
Declaration
public string Cursor { get; protected set; }
Property Value
Type | Description |
---|---|
System.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 |
---|---|
System.Boolean |
Members
List of team members.
Declaration
public IList<TeamMemberInfoV2> Members { get; protected set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<TeamMemberInfoV2> |