Dropbox .NET SDK
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 Dropbox.Api.Sharing.SharedFolderMetadata.PathLower.

Inheritance
object
ListFoldersResult
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Sharing
Assembly: Dropbox.Api.dll
Syntax
public class ListFoldersResult

Constructors

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
IEnumerable<SharedFolderMetadata> entries

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

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

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
string
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
IList<SharedFolderMetadata>
  • View Source
In this article
Back to top Dropbox .NET SDK