Class ListFolderResult
The list folder result object
Inheritance
Inherited Members
Namespace: Dropbox.Api.Files
Assembly: Dropbox.Api.dll
Syntax
public class ListFolderResult
Constructors
| Improve this Doc View SourceListFolderResult(IEnumerable<Metadata>, String, Boolean)
Initializes a new instance of the ListFolderResult class.
Declaration
public ListFolderResult(IEnumerable<Metadata> entries, string cursor, bool hasMore)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<Metadata> | entries | The files and (direct) subfolders in the folder. |
System.String | cursor | Pass the cursor into ListFolderContinueAsync(ListFolderContinueArg) ListFolderContinueAsync(ListFolderContinueArg) to see what's changed in the folder since your previous query. |
System.Boolean | hasMore | If true, then there are more entries available. Pass the cursor to ListFolderContinueAsync(ListFolderContinueArg) ListFolderContinueAsync(ListFolderContinueArg) to retrieve the rest. |
Properties
| Improve this Doc View SourceCursor
Pass the cursor into ListFolderContinueAsync(ListFolderContinueArg) ListFolderContinueAsync(ListFolderContinueArg) to see what's changed in the folder since your previous query.
Declaration
public string Cursor { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
Entries
The files and (direct) subfolders in the folder.
Declaration
public IList<Metadata> Entries { get; protected set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<Metadata> |
HasMore
If true, then there are more entries available. Pass the cursor to ListFolderContinueAsync(ListFolderContinueArg) ListFolderContinueAsync(ListFolderContinueArg) to retrieve the rest.
Declaration
public bool HasMore { get; protected set; }
Property Value
Type | Description |
---|---|
System.Boolean |