Show / Hide Table of Contents

Class ListFoldersResult

Result for ListFoldersAsync(ListFoldersArgs) or ListMountableFoldersAsync(ListFoldersArgs), depending on which endpoint was requested.

Unmounted shared folders can be identified by the absence of .

Inheritance
System.Object
ListFoldersResult
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.Sharing
Assembly: Dropbox.Api.dll
Syntax
public class ListFoldersResult

Constructors

| Improve this Doc View Source

ListFoldersResult(IEnumerable<SharedFolderMetadata>, String)

Initializes a new instance of the ListFoldersResult class.

Declaration
public ListFoldersResult(IEnumerable<SharedFolderMetadata> entries, string cursor = null)
Parameters
Type Name Description
System.Collections.Generic.IEnumerable<SharedFolderMetadata> entries

List of all shared folders the authenticated user has access to.

System.String cursor

Present if there are additional shared folders that have not been returned yet. Pass the cursor into the corresponding continue endpoint (either ListFoldersContinueAsync(ListFoldersContinueArg) or ListMountableFoldersContinueAsync(ListFoldersContinueArg)) to list additional folders.

Properties

| Improve this Doc View Source

Cursor

Present if there are additional shared folders that have not been returned yet. Pass the cursor into the corresponding continue endpoint (either ListFoldersContinueAsync(ListFoldersContinueArg) or ListMountableFoldersContinueAsync(ListFoldersContinueArg)) to list additional folders.

Declaration
public string Cursor { get; protected set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Entries

List of all shared folders the authenticated user has access to.

Declaration
public IList<SharedFolderMetadata> Entries { get; protected set; }
Property Value
Type Description
System.Collections.Generic.IList<SharedFolderMetadata>
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • ListFoldersResult(IEnumerable<SharedFolderMetadata>, String)
  • Properties
    • Cursor
    • Entries
Back to top Generated by DocFX