Class MembersListResult
The members list result object
Inheritance
System.Object
MembersListResult
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 MembersListResult
Constructors
| Improve this Doc View SourceMembersListResult(IEnumerable<TeamMemberInfo>, String, Boolean)
Initializes a new instance of the MembersListResult class.
Declaration
public MembersListResult(IEnumerable<TeamMemberInfo> members, string cursor, bool hasMore)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<TeamMemberInfo> | members | List of team members. |
System.String | cursor | Pass the cursor into MembersListContinueAsync(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 MembersListContinueAsync(MembersListContinueArg) can retrieve them. |
Properties
| Improve this Doc View SourceCursor
Pass the cursor into MembersListContinueAsync(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 MembersListContinueAsync(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<TeamMemberInfo> Members { get; protected set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<TeamMemberInfo> |