Class TeamFolderListResult
Result for TeamFolderListAsync(TeamFolderListArg) and TeamFolderListContinueAsync(TeamFolderListContinueArg).
Inherited Members
Namespace: Dropbox.Api.Team
Assembly: Dropbox.Api.dll
Syntax
public class TeamFolderListResult
Constructors
View SourceTeamFolderListResult(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 SourceCursor
Pass the cursor into TeamFolderListContinueAsync(TeamFolderListContinueArg) to obtain additional team folders.
Declaration
public string Cursor { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
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 |
TeamFolders
List of all team folders in the authenticated team.
Declaration
public IList<TeamFolderMetadata> TeamFolders { get; protected set; }
Property Value
| Type | Description |
|---|---|
| IList<TeamFolderMetadata> |