Show / Hide Table of Contents

Class TeamFolderListResult

Result for TeamFolderListAsync(TeamFolderListArg) and TeamFolderListContinueAsync(TeamFolderListContinueArg).

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

Constructors

| Improve this Doc View Source

TeamFolderListResult(IEnumerable<TeamFolderMetadata>, String, Boolean)

Initializes a new instance of the TeamFolderListResult class.

Declaration
public TeamFolderListResult(IEnumerable<TeamFolderMetadata> teamFolders, string cursor, bool hasMore)
Parameters
Type Name Description
System.Collections.Generic.IEnumerable<TeamFolderMetadata> teamFolders

List of all team folders in the authenticated team.

System.String cursor

Pass the cursor into TeamFolderListContinueAsync(TeamFolderListContinueArg) to obtain additional team folders.

System.Boolean hasMore

Is true if there are additional team folders that have not been returned yet. An additional call to TeamFolderListContinueAsync(TeamFolderListContinueArg) can retrieve them.

Properties

| Improve this Doc View Source

Cursor

Pass the cursor into TeamFolderListContinueAsync(TeamFolderListContinueArg) to obtain additional team folders.

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 folders that have not been returned yet. An additional call to TeamFolderListContinueAsync(TeamFolderListContinueArg) can retrieve them.

Declaration
public bool HasMore { get; protected set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

TeamFolders

List of all team folders in the authenticated team.

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