Dropbox .NET SDK
Show / Hide Table of Contents

Class GroupsListResult

The groups list result object

Inheritance
object
GroupsListResult
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Team
Assembly: Dropbox.Api.dll
Syntax
public class GroupsListResult

Constructors

View Source

GroupsListResult(IEnumerable<GroupSummary>, string, bool)

Initializes a new instance of the GroupsListResult class.

Declaration
public GroupsListResult(IEnumerable<GroupSummary> groups, string cursor, bool hasMore)
Parameters
Type Name Description
IEnumerable<GroupSummary> groups

The groups

string cursor

Pass the cursor into GroupsListContinueAsync(GroupsListContinueArg) to obtain the additional groups.

bool hasMore

Is true if there are additional groups that have not been returned yet. An additional call to GroupsListContinueAsync(GroupsListContinueArg) can retrieve them.

Properties

View Source

Cursor

Pass the cursor into GroupsListContinueAsync(GroupsListContinueArg) to obtain the additional groups.

Declaration
public string Cursor { get; protected set; }
Property Value
Type Description
string
View Source

Groups

Gets the groups of the groups list result

Declaration
public IList<GroupSummary> Groups { get; protected set; }
Property Value
Type Description
IList<GroupSummary>
View Source

HasMore

Is true if there are additional groups that have not been returned yet. An additional call to GroupsListContinueAsync(GroupsListContinueArg) can retrieve them.

Declaration
public bool HasMore { get; protected set; }
Property Value
Type Description
bool
  • View Source
In this article
Back to top Dropbox .NET SDK