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 List
Declaration
public ListFolderResult(IEnumerable<Metadata> entries, string cursor, bool hasMore)
Parameters
Type | Name | Description |
---|---|---|
System. |
entries | The files and (direct) subfolders in the folder. |
System. |
cursor | Pass the cursor into List |
System. |
hasMore | If true, then there are more entries available. Pass the
cursor to List |
Properties
| Improve this Doc View SourceCursor
Pass the cursor into List
Declaration
public string Cursor { get; protected set; }
Property Value
Type | Description |
---|---|
System. |
Entries
The files and (direct) subfolders in the folder.
Declaration
public IList<Metadata> Entries { get; protected set; }
Property Value
Type | Description |
---|---|
System. |
HasMore
If true, then there are more entries available. Pass the cursor to List
Declaration
public bool HasMore { get; protected set; }
Property Value
Type | Description |
---|---|
System. |