Show / Hide Table of Contents

Class ListFolderResult

The list folder result object

Inheritance
System.Object
ListFolderResult
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Dropbox.Api.Files
Assembly: Dropbox.Api.dll
Syntax
public class ListFolderResult

Constructors

| Improve this Doc View Source

ListFolderResult(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 Source

Cursor

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
| Improve this Doc View Source

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>
| Improve this Doc View Source

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
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • ListFolderResult(IEnumerable<Metadata>, String, Boolean)
  • Properties
    • Cursor
    • Entries
    • HasMore
Back to top Generated by DocFX