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