Show / Hide Table of Contents

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 Source

MembersListResult(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 Source

Cursor

Pass the cursor into MembersListContinueAsync(MembersListContinueArg) to obtain the additional 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 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
| Improve this Doc View Source

Members

List of team members.

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