Show / Hide Table of Contents

Class GroupsListResult

The groups list result object

Inheritance
System.Object
GroupsListResult
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 GroupsListResult

Constructors

| Improve this Doc View Source

GroupsListResult(IEnumerable<GroupSummary>, String, Boolean)

Initializes a new instance of the GroupsListResult class.

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

The groups

System.String cursor

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

System.Boolean hasMore

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

Properties

| Improve this Doc 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
System.String
| Improve this Doc View Source

Groups

Gets the groups of the groups list result

Declaration
public IList<GroupSummary> Groups { get; protected set; }
Property Value
Type Description
System.Collections.Generic.IList<GroupSummary>
| Improve this Doc 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
System.Boolean
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • GroupsListResult(IEnumerable<GroupSummary>, String, Boolean)
  • Properties
    • Cursor
    • Groups
    • HasMore
Back to top Generated by DocFX