Dropbox .NET SDK
Show / Hide Table of Contents

Class TeamFolderListResult

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

Inheritance
object
TeamFolderListResult
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 TeamFolderListResult

Constructors

View Source

TeamFolderListResult(IEnumerable<TeamFolderMetadata>, string, bool)

Initializes a new instance of the TeamFolderListResult class.

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

List of all team folders in the authenticated team.

string cursor

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

bool 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

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
string
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
bool
View Source

TeamFolders

List of all team folders in the authenticated team.

Declaration
public IList<TeamFolderMetadata> TeamFolders { get; protected set; }
Property Value
Type Description
IList<TeamFolderMetadata>
  • View Source
In this article
Back to top Dropbox .NET SDK